Class: TencentCloud::Iotvideoindustry::V20201201::DescribeDeviceEventResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeDeviceEventResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeDeviceEvent返回参数结构体
Instance Attribute Summary collapse
-
#Events ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, events = nil, requestid = nil) ⇒ DescribeDeviceEventResponse
constructor
A new instance of DescribeDeviceEventResponse.
Constructor Details
#initialize(totalcount = nil, events = nil, requestid = nil) ⇒ DescribeDeviceEventResponse
Returns a new instance of DescribeDeviceEventResponse.
2118 2119 2120 2121 2122 |
# File 'lib/v20201201/models.rb', line 2118 def initialize(totalcount=nil, events=nil, requestid=nil) @TotalCount = totalcount @Events = events @RequestId = requestid end |
Instance Attribute Details
#Events ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2116 2117 2118 |
# File 'lib/v20201201/models.rb', line 2116 def Events @Events end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2116 2117 2118 |
# File 'lib/v20201201/models.rb', line 2116 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2116 2117 2118 |
# File 'lib/v20201201/models.rb', line 2116 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 |
# File 'lib/v20201201/models.rb', line 2124 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Events'].nil? @Events = [] params['Events'].each do |i| events_tmp = Events.new events_tmp.deserialize(i) @Events << events_tmp end end @RequestId = params['RequestId'] end |