Class: TencentCloud::Organization::V20181225::ListOrganizationNodeMembersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20181225::ListOrganizationNodeMembersResponse
- Defined in:
- lib/v20181225/models.rb
Overview
ListOrganizationNodeMembers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, members = nil, requestid = nil) ⇒ ListOrganizationNodeMembersResponse
constructor
A new instance of ListOrganizationNodeMembersResponse.
Constructor Details
#initialize(totalcount = nil, members = nil, requestid = nil) ⇒ ListOrganizationNodeMembersResponse
Returns a new instance of ListOrganizationNodeMembersResponse.
583 584 585 586 587 |
# File 'lib/v20181225/models.rb', line 583 def initialize(totalcount=nil, members=nil, requestid=nil) @TotalCount = totalcount @Members = members @RequestId = requestid end |
Instance Attribute Details
#Members ⇒ Object
581 582 583 |
# File 'lib/v20181225/models.rb', line 581 def Members @Members end |
#RequestId ⇒ Object
581 582 583 |
# File 'lib/v20181225/models.rb', line 581 def RequestId @RequestId end |
#TotalCount ⇒ Object
581 582 583 |
# File 'lib/v20181225/models.rb', line 581 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'lib/v20181225/models.rb', line 589 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Members'].nil? @Members = [] params['Members'].each do |i| orgmember_tmp = OrgMember.new orgmember_tmp.deserialize(i) @Members << orgmember_tmp end end @RequestId = params['RequestId'] end |