Class: TencentCloud::Organization::V20210331::DescribeOrganizationMembersRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::DescribeOrganizationMembersRequest
- Defined in:
- lib/v20210331/models.rb
Overview
DescribeOrganizationMembers请求参数结构体
Instance Attribute Summary collapse
- #AuthName ⇒ Object
- #Lang ⇒ Object
- #Limit ⇒ Object
- #NodeId ⇒ Object
- #NodeName ⇒ Object
- #Offset ⇒ Object
- #Product ⇒ Object
- #SearchKey ⇒ Object
- #Tags ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(offset = nil, limit = nil, lang = nil, searchkey = nil, authname = nil, product = nil, tags = nil, nodeid = nil, nodename = nil) ⇒ DescribeOrganizationMembersRequest
constructor
A new instance of DescribeOrganizationMembersRequest.
Constructor Details
#initialize(offset = nil, limit = nil, lang = nil, searchkey = nil, authname = nil, product = nil, tags = nil, nodeid = nil, nodename = nil) ⇒ DescribeOrganizationMembersRequest
Returns a new instance of DescribeOrganizationMembersRequest.
2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 |
# File 'lib/v20210331/models.rb', line 2802 def initialize(offset=nil, limit=nil, lang=nil, searchkey=nil, authname=nil, product=nil, =nil, nodeid=nil, nodename=nil) @Offset = offset @Limit = limit @Lang = lang @SearchKey = searchkey @AuthName = authname @Product = product @Tags = @NodeId = nodeid @NodeName = nodename end |
Instance Attribute Details
#AuthName ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def AuthName @AuthName end |
#Lang ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def Lang @Lang end |
#Limit ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def Limit @Limit end |
#NodeId ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def NodeId @NodeId end |
#NodeName ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def NodeName @NodeName end |
#Offset ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def Offset @Offset end |
#Product ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def Product @Product end |
#SearchKey ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def SearchKey @SearchKey end |
#Tags ⇒ Object
2800 2801 2802 |
# File 'lib/v20210331/models.rb', line 2800 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 |
# File 'lib/v20210331/models.rb', line 2814 def deserialize(params) @Offset = params['Offset'] @Limit = params['Limit'] @Lang = params['Lang'] @SearchKey = params['SearchKey'] @AuthName = params['AuthName'] @Product = params['Product'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| tag_tmp = Tag.new tag_tmp.deserialize(i) @Tags << tag_tmp end end @NodeId = params['NodeId'] @NodeName = params['NodeName'] end |