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.
4471 4472 4473 4474 4475 4476 4477 4478 |
# File 'lib/v20210331/models.rb', line 4471 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
4469 4470 4471 |
# File 'lib/v20210331/models.rb', line 4469 def IsTruncated @IsTruncated end |
#JoinedGroups ⇒ Object
4469 4470 4471 |
# File 'lib/v20210331/models.rb', line 4469 def JoinedGroups @JoinedGroups end |
#MaxResults ⇒ Object
4469 4470 4471 |
# File 'lib/v20210331/models.rb', line 4469 def MaxResults @MaxResults end |
#NextToken ⇒ Object
4469 4470 4471 |
# File 'lib/v20210331/models.rb', line 4469 def NextToken @NextToken end |
#RequestId ⇒ Object
4469 4470 4471 |
# File 'lib/v20210331/models.rb', line 4469 def RequestId @RequestId end |
#TotalCounts ⇒ Object
4469 4470 4471 |
# File 'lib/v20210331/models.rb', line 4469 def TotalCounts @TotalCounts end |
Instance Method Details
#deserialize(params) ⇒ Object
4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 |
# File 'lib/v20210331/models.rb', line 4480 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 |