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.
2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 |
# File 'lib/v20210331/models.rb', line 2871 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
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def AuthName @AuthName end |
#Lang ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def Lang @Lang end |
#Limit ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def Limit @Limit end |
#NodeId ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def NodeId @NodeId end |
#NodeName ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def NodeName @NodeName end |
#Offset ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def Offset @Offset end |
#Product ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def Product @Product end |
#SearchKey ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def SearchKey @SearchKey end |
#Tags ⇒ Object
2869 2870 2871 |
# File 'lib/v20210331/models.rb', line 2869 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 |
# File 'lib/v20210331/models.rb', line 2883 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 |