Class: TencentCloud::Iotexplorer::V20190423::DescribeFenceBindListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::DescribeFenceBindListResponse
- Defined in:
- lib/v20190423/models.rb
Overview
DescribeFenceBindList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, total = nil, requestid = nil) ⇒ DescribeFenceBindListResponse
constructor
A new instance of DescribeFenceBindListResponse.
Constructor Details
#initialize(list = nil, total = nil, requestid = nil) ⇒ DescribeFenceBindListResponse
Returns a new instance of DescribeFenceBindListResponse.
5542 5543 5544 5545 5546 |
# File 'lib/v20190423/models.rb', line 5542 def initialize(list=nil, total=nil, requestid=nil) @List = list @Total = total @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
5540 5541 5542 |
# File 'lib/v20190423/models.rb', line 5540 def List @List end |
#RequestId ⇒ Object
5540 5541 5542 |
# File 'lib/v20190423/models.rb', line 5540 def RequestId @RequestId end |
#Total ⇒ Object
5540 5541 5542 |
# File 'lib/v20190423/models.rb', line 5540 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 |
# File 'lib/v20190423/models.rb', line 5548 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| fencebindproductitem_tmp = FenceBindProductItem.new fencebindproductitem_tmp.deserialize(i) @List << fencebindproductitem_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |