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.
6702 6703 6704 6705 6706 |
# File 'lib/v20190423/models.rb', line 6702 def initialize(list=nil, total=nil, requestid=nil) @List = list @Total = total @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6700 6701 6702 |
# File 'lib/v20190423/models.rb', line 6700 def List @List end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6700 6701 6702 |
# File 'lib/v20190423/models.rb', line 6700 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
6700 6701 6702 |
# File 'lib/v20190423/models.rb', line 6700 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 |
# File 'lib/v20190423/models.rb', line 6708 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 |