Class: TencentCloud::Iotexplorer::V20190423::DescribeSpaceFenceEventListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::DescribeSpaceFenceEventListResponse
- Defined in:
- lib/v20190423/models.rb
Overview
DescribeSpaceFenceEventList返回参数结构体
Instance Attribute Summary collapse
-
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, total = nil, requestid = nil) ⇒ DescribeSpaceFenceEventListResponse
constructor
A new instance of DescribeSpaceFenceEventListResponse.
Constructor Details
#initialize(list = nil, total = nil, requestid = nil) ⇒ DescribeSpaceFenceEventListResponse
Returns a new instance of DescribeSpaceFenceEventListResponse.
6690 6691 6692 6693 6694 |
# File 'lib/v20190423/models.rb', line 6690 def initialize(list=nil, total=nil, requestid=nil) @List = list @Total = total @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6688 6689 6690 |
# File 'lib/v20190423/models.rb', line 6688 def List @List end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6688 6689 6690 |
# File 'lib/v20190423/models.rb', line 6688 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6688 6689 6690 |
# File 'lib/v20190423/models.rb', line 6688 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 |
# File 'lib/v20190423/models.rb', line 6696 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| fenceeventitem_tmp = FenceEventItem.new fenceeventitem_tmp.deserialize(i) @List << fenceeventitem_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |