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.
8748 8749 8750 8751 8752 |
# File 'lib/v20190423/models.rb', line 8748 def initialize(total=nil, devicelist=nil, requestid=nil) @Total = total @DeviceList = devicelist @RequestId = requestid end |
Instance Attribute Details
#DeviceList ⇒ Object
8746 8747 8748 |
# File 'lib/v20190423/models.rb', line 8746 def DeviceList @DeviceList end |
#RequestId ⇒ Object
8746 8747 8748 |
# File 'lib/v20190423/models.rb', line 8746 def RequestId @RequestId end |
#Total ⇒ Object
8746 8747 8748 |
# File 'lib/v20190423/models.rb', line 8746 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8754 8755 8756 8757 8758 8759 8760 8761 |
# File 'lib/v20190423/models.rb', line 8754 def deserialize(params) @Total = params['Total'] unless params['DeviceList'].nil? @DeviceList = FamilySubDevice.new @DeviceList.deserialize(params['DeviceList']) end @RequestId = params['RequestId'] end |