Class: TencentCloud::Organization::V20210331::ListOrganizationIdentityResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::ListOrganizationIdentityResponse
- Defined in:
- lib/v20210331/models.rb
Overview
ListOrganizationIdentity返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, items = nil, requestid = nil) ⇒ ListOrganizationIdentityResponse
constructor
A new instance of ListOrganizationIdentityResponse.
Constructor Details
#initialize(total = nil, items = nil, requestid = nil) ⇒ ListOrganizationIdentityResponse
Returns a new instance of ListOrganizationIdentityResponse.
4659 4660 4661 4662 4663 |
# File 'lib/v20210331/models.rb', line 4659 def initialize(total=nil, items=nil, requestid=nil) @Total = total @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4657 4658 4659 |
# File 'lib/v20210331/models.rb', line 4657 def Items @Items end |
#RequestId ⇒ Object
4657 4658 4659 |
# File 'lib/v20210331/models.rb', line 4657 def RequestId @RequestId end |
#Total ⇒ Object
4657 4658 4659 |
# File 'lib/v20210331/models.rb', line 4657 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 |
# File 'lib/v20210331/models.rb', line 4665 def deserialize(params) @Total = params['Total'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| orgidentity_tmp = OrgIdentity.new orgidentity_tmp.deserialize(i) @Items << orgidentity_tmp end end @RequestId = params['RequestId'] end |