Class: TencentCloud::Organization::V20210331::DescribeOrganizationAuthNodeResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::DescribeOrganizationAuthNodeResponse
- Defined in:
- lib/v20210331/models.rb
Overview
DescribeOrganizationAuthNode返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, items = nil, requestid = nil) ⇒ DescribeOrganizationAuthNodeResponse
constructor
A new instance of DescribeOrganizationAuthNodeResponse.
Constructor Details
#initialize(total = nil, items = nil, requestid = nil) ⇒ DescribeOrganizationAuthNodeResponse
Returns a new instance of DescribeOrganizationAuthNodeResponse.
2317 2318 2319 2320 2321 |
# File 'lib/v20210331/models.rb', line 2317 def initialize(total=nil, items=nil, requestid=nil) @Total = total @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
2315 2316 2317 |
# File 'lib/v20210331/models.rb', line 2315 def Items @Items end |
#RequestId ⇒ Object
2315 2316 2317 |
# File 'lib/v20210331/models.rb', line 2315 def RequestId @RequestId end |
#Total ⇒ Object
2315 2316 2317 |
# File 'lib/v20210331/models.rb', line 2315 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 |
# File 'lib/v20210331/models.rb', line 2323 def deserialize(params) @Total = params['Total'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| authnode_tmp = AuthNode.new authnode_tmp.deserialize(i) @Items << authnode_tmp end end @RequestId = params['RequestId'] end |