Class: TencentCloud::Organization::V20210331::DescribeOrganizationMemberAuthAccountsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::DescribeOrganizationMemberAuthAccountsResponse
- Defined in:
- lib/v20210331/models.rb
Overview
DescribeOrganizationMemberAuthAccounts返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(items = nil, total = nil, requestid = nil) ⇒ DescribeOrganizationMemberAuthAccountsResponse
constructor
A new instance of DescribeOrganizationMemberAuthAccountsResponse.
Constructor Details
#initialize(items = nil, total = nil, requestid = nil) ⇒ DescribeOrganizationMemberAuthAccountsResponse
Returns a new instance of DescribeOrganizationMemberAuthAccountsResponse.
2573 2574 2575 2576 2577 |
# File 'lib/v20210331/models.rb', line 2573 def initialize(items=nil, total=nil, requestid=nil) @Items = items @Total = total @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
2571 2572 2573 |
# File 'lib/v20210331/models.rb', line 2571 def Items @Items end |
#RequestId ⇒ Object
2571 2572 2573 |
# File 'lib/v20210331/models.rb', line 2571 def RequestId @RequestId end |
#Total ⇒ Object
2571 2572 2573 |
# File 'lib/v20210331/models.rb', line 2571 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 |
# File 'lib/v20210331/models.rb', line 2579 def deserialize(params) unless params['Items'].nil? @Items = [] params['Items'].each do |i| orgmemberauthaccount_tmp = OrgMemberAuthAccount.new orgmemberauthaccount_tmp.deserialize(i) @Items << orgmemberauthaccount_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |