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.
4797 4798 4799 4800 4801 |
# File 'lib/v20210331/models.rb', line 4797 def initialize(total=nil, items=nil, requestid=nil) @Total = total @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4795 4796 4797 |
# File 'lib/v20210331/models.rb', line 4795 def Items @Items end |
#RequestId ⇒ Object
4795 4796 4797 |
# File 'lib/v20210331/models.rb', line 4795 def RequestId @RequestId end |
#Total ⇒ Object
4795 4796 4797 |
# File 'lib/v20210331/models.rb', line 4795 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 |
# File 'lib/v20210331/models.rb', line 4803 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 |