Class: TencentCloud::Gaap::V20180529::DescribeProxyGroupListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gaap::V20180529::DescribeProxyGroupListResponse
- Defined in:
- lib/v20180529/models.rb
Overview
DescribeProxyGroupList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, proxygrouplist = nil, requestid = nil) ⇒ DescribeProxyGroupListResponse
constructor
A new instance of DescribeProxyGroupListResponse.
Constructor Details
#initialize(totalcount = nil, proxygrouplist = nil, requestid = nil) ⇒ DescribeProxyGroupListResponse
Returns a new instance of DescribeProxyGroupListResponse.
3533 3534 3535 3536 3537 |
# File 'lib/v20180529/models.rb', line 3533 def initialize(totalcount=nil, proxygrouplist=nil, requestid=nil) @TotalCount = totalcount @ProxyGroupList = proxygrouplist @RequestId = requestid end |
Instance Attribute Details
#ProxyGroupList ⇒ Object
3531 3532 3533 |
# File 'lib/v20180529/models.rb', line 3531 def ProxyGroupList @ProxyGroupList end |
#RequestId ⇒ Object
3531 3532 3533 |
# File 'lib/v20180529/models.rb', line 3531 def RequestId @RequestId end |
#TotalCount ⇒ Object
3531 3532 3533 |
# File 'lib/v20180529/models.rb', line 3531 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 |
# File 'lib/v20180529/models.rb', line 3539 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ProxyGroupList'].nil? @ProxyGroupList = [] params['ProxyGroupList'].each do |i| proxygroupinfo_tmp = ProxyGroupInfo.new proxygroupinfo_tmp.deserialize(i) @ProxyGroupList << proxygroupinfo_tmp end end @RequestId = params['RequestId'] end |