Class: TencentCloud::Organization::V20210331::ListJoinedGroupsForUserResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::ListJoinedGroupsForUserResponse
- Defined in:
- lib/v20210331/models.rb
Overview
ListJoinedGroupsForUser返回参数结构体
Instance Attribute Summary collapse
- #IsTruncated ⇒ Object
- #JoinedGroups ⇒ Object
- #MaxResults ⇒ Object
- #NextToken ⇒ Object
- #RequestId ⇒ Object
- #TotalCounts ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nexttoken = nil, totalcounts = nil, maxresults = nil, istruncated = nil, joinedgroups = nil, requestid = nil) ⇒ ListJoinedGroupsForUserResponse
constructor
A new instance of ListJoinedGroupsForUserResponse.
Constructor Details
#initialize(nexttoken = nil, totalcounts = nil, maxresults = nil, istruncated = nil, joinedgroups = nil, requestid = nil) ⇒ ListJoinedGroupsForUserResponse
Returns a new instance of ListJoinedGroupsForUserResponse.
4609 4610 4611 4612 4613 4614 4615 4616 |
# File 'lib/v20210331/models.rb', line 4609 def initialize(nexttoken=nil, totalcounts=nil, maxresults=nil, istruncated=nil, joinedgroups=nil, requestid=nil) @NextToken = nexttoken @TotalCounts = totalcounts @MaxResults = maxresults @IsTruncated = istruncated @JoinedGroups = joinedgroups @RequestId = requestid end |
Instance Attribute Details
#IsTruncated ⇒ Object
4607 4608 4609 |
# File 'lib/v20210331/models.rb', line 4607 def IsTruncated @IsTruncated end |
#JoinedGroups ⇒ Object
4607 4608 4609 |
# File 'lib/v20210331/models.rb', line 4607 def JoinedGroups @JoinedGroups end |
#MaxResults ⇒ Object
4607 4608 4609 |
# File 'lib/v20210331/models.rb', line 4607 def MaxResults @MaxResults end |
#NextToken ⇒ Object
4607 4608 4609 |
# File 'lib/v20210331/models.rb', line 4607 def NextToken @NextToken end |
#RequestId ⇒ Object
4607 4608 4609 |
# File 'lib/v20210331/models.rb', line 4607 def RequestId @RequestId end |
#TotalCounts ⇒ Object
4607 4608 4609 |
# File 'lib/v20210331/models.rb', line 4607 def TotalCounts @TotalCounts end |
Instance Method Details
#deserialize(params) ⇒ Object
4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 |
# File 'lib/v20210331/models.rb', line 4618 def deserialize(params) @NextToken = params['NextToken'] @TotalCounts = params['TotalCounts'] @MaxResults = params['MaxResults'] @IsTruncated = params['IsTruncated'] unless params['JoinedGroups'].nil? @JoinedGroups = [] params['JoinedGroups'].each do |i| joinedgroups_tmp = JoinedGroups.new joinedgroups_tmp.deserialize(i) @JoinedGroups << joinedgroups_tmp end end @RequestId = params['RequestId'] end |