Class: TencentCloud::Organization::V20210331::DescribeShareUnitMembersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::DescribeShareUnitMembersResponse
- Defined in:
- lib/v20210331/models.rb
Overview
DescribeShareUnitMembers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, items = nil, requestid = nil) ⇒ DescribeShareUnitMembersResponse
constructor
A new instance of DescribeShareUnitMembersResponse.
Constructor Details
#initialize(total = nil, items = nil, requestid = nil) ⇒ DescribeShareUnitMembersResponse
Returns a new instance of DescribeShareUnitMembersResponse.
3366 3367 3368 3369 3370 |
# File 'lib/v20210331/models.rb', line 3366 def initialize(total=nil, items=nil, requestid=nil) @Total = total @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
3364 3365 3366 |
# File 'lib/v20210331/models.rb', line 3364 def Items @Items end |
#RequestId ⇒ Object
3364 3365 3366 |
# File 'lib/v20210331/models.rb', line 3364 def RequestId @RequestId end |
#Total ⇒ Object
3364 3365 3366 |
# File 'lib/v20210331/models.rb', line 3364 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 |
# File 'lib/v20210331/models.rb', line 3372 def deserialize(params) @Total = params['Total'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| shareunitmember_tmp = ShareUnitMember.new shareunitmember_tmp.deserialize(i) @Items << shareunitmember_tmp end end @RequestId = params['RequestId'] end |