Class: TencentCloud::Gaap::V20180529::DescribeProxiesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gaap::V20180529::DescribeProxiesResponse
- Defined in:
- lib/v20180529/models.rb
Overview
DescribeProxies返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, instanceset = nil, proxyset = nil, requestid = nil) ⇒ DescribeProxiesResponse
constructor
A new instance of DescribeProxiesResponse.
Constructor Details
#initialize(totalcount = nil, instanceset = nil, proxyset = nil, requestid = nil) ⇒ DescribeProxiesResponse
Returns a new instance of DescribeProxiesResponse.
3268 3269 3270 3271 3272 3273 |
# File 'lib/v20180529/models.rb', line 3268 def initialize(totalcount=nil, instanceset=nil, proxyset=nil, requestid=nil) @TotalCount = totalcount @InstanceSet = instanceset @ProxySet = proxyset @RequestId = requestid end |
Instance Attribute Details
#InstanceSet ⇒ Object
3266 3267 3268 |
# File 'lib/v20180529/models.rb', line 3266 def InstanceSet @InstanceSet end |
#ProxySet ⇒ Object
3266 3267 3268 |
# File 'lib/v20180529/models.rb', line 3266 def ProxySet @ProxySet end |
#RequestId ⇒ Object
3266 3267 3268 |
# File 'lib/v20180529/models.rb', line 3266 def RequestId @RequestId end |
#TotalCount ⇒ Object
3266 3267 3268 |
# File 'lib/v20180529/models.rb', line 3266 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 |
# File 'lib/v20180529/models.rb', line 3275 def deserialize(params) @TotalCount = params['TotalCount'] unless params['InstanceSet'].nil? @InstanceSet = [] params['InstanceSet'].each do |i| = ProxyInfo.new .deserialize(i) @InstanceSet << end end unless params['ProxySet'].nil? @ProxySet = [] params['ProxySet'].each do |i| = ProxyInfo.new .deserialize(i) @ProxySet << end end @RequestId = params['RequestId'] end |