Class: TencentCloud::Iotvideoindustry::V20201201::AbnormalEvents
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::AbnormalEvents
- Defined in:
- lib/v20201201/models.rb
Overview
异动事件走势列表
Instance Attribute Summary collapse
-
#Date ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Info ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(date = nil, info = nil) ⇒ AbnormalEvents
constructor
A new instance of AbnormalEvents.
Constructor Details
#initialize(date = nil, info = nil) ⇒ AbnormalEvents
Returns a new instance of AbnormalEvents.
31 32 33 34 |
# File 'lib/v20201201/models.rb', line 31 def initialize(date=nil, info=nil) @Date = date @Info = info end |
Instance Attribute Details
#Date ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
29 30 31 |
# File 'lib/v20201201/models.rb', line 29 def Date @Date end |
#Info ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
29 30 31 |
# File 'lib/v20201201/models.rb', line 29 def Info @Info end |
Instance Method Details
#deserialize(params) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/v20201201/models.rb', line 36 def deserialize(params) @Date = params['Date'] unless params['Info'].nil? @Info = [] params['Info'].each do |i| abnormaleventsinfo_tmp = AbnormalEventsInfo.new abnormaleventsinfo_tmp.deserialize(i) @Info << abnormaleventsinfo_tmp end end end |