Class: TencentCloud::Partners::V20180321::DescribeUnbindClientListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Partners::V20180321::DescribeUnbindClientListResponse
- Defined in:
- lib/v20180321/models.rb
Overview
DescribeUnbindClientList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, unbindclientlist = nil, requestid = nil) ⇒ DescribeUnbindClientListResponse
constructor
A new instance of DescribeUnbindClientListResponse.
Constructor Details
#initialize(totalcount = nil, unbindclientlist = nil, requestid = nil) ⇒ DescribeUnbindClientListResponse
Returns a new instance of DescribeUnbindClientListResponse.
1691 1692 1693 1694 1695 |
# File 'lib/v20180321/models.rb', line 1691 def initialize(totalcount=nil, unbindclientlist=nil, requestid=nil) @TotalCount = totalcount @UnbindClientList = unbindclientlist @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1689 1690 1691 |
# File 'lib/v20180321/models.rb', line 1689 def RequestId @RequestId end |
#TotalCount ⇒ Object
1689 1690 1691 |
# File 'lib/v20180321/models.rb', line 1689 def TotalCount @TotalCount end |
#UnbindClientList ⇒ Object
1689 1690 1691 |
# File 'lib/v20180321/models.rb', line 1689 def UnbindClientList @UnbindClientList end |
Instance Method Details
#deserialize(params) ⇒ Object
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 |
# File 'lib/v20180321/models.rb', line 1697 def deserialize(params) @TotalCount = params['TotalCount'] unless params['UnbindClientList'].nil? @UnbindClientList = [] params['UnbindClientList'].each do |i| unbindclientelem_tmp = UnbindClientElem.new unbindclientelem_tmp.deserialize(i) @UnbindClientList << unbindclientelem_tmp end end @RequestId = params['RequestId'] end |