Class: TencentCloud::Iotexplorer::V20190423::GetGatewaySubDeviceListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::GetGatewaySubDeviceListResponse
- Defined in:
- lib/v20190423/models.rb
Overview
GetGatewaySubDeviceList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, devicelist = nil, requestid = nil) ⇒ GetGatewaySubDeviceListResponse
constructor
A new instance of GetGatewaySubDeviceListResponse.
Constructor Details
#initialize(total = nil, devicelist = nil, requestid = nil) ⇒ GetGatewaySubDeviceListResponse
Returns a new instance of GetGatewaySubDeviceListResponse.
8736 8737 8738 8739 8740 |
# File 'lib/v20190423/models.rb', line 8736 def initialize(total=nil, devicelist=nil, requestid=nil) @Total = total @DeviceList = devicelist @RequestId = requestid end |
Instance Attribute Details
#DeviceList ⇒ Object
8734 8735 8736 |
# File 'lib/v20190423/models.rb', line 8734 def DeviceList @DeviceList end |
#RequestId ⇒ Object
8734 8735 8736 |
# File 'lib/v20190423/models.rb', line 8734 def RequestId @RequestId end |
#Total ⇒ Object
8734 8735 8736 |
# File 'lib/v20190423/models.rb', line 8734 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8742 8743 8744 8745 8746 8747 8748 8749 |
# File 'lib/v20190423/models.rb', line 8742 def deserialize(params) @Total = params['Total'] unless params['DeviceList'].nil? @DeviceList = FamilySubDevice.new @DeviceList.deserialize(params['DeviceList']) end @RequestId = params['RequestId'] end |