Class: TencentCloud::Iss::V20230517::ListOrganizationChannelsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::ListOrganizationChannelsRequest
- Defined in:
- lib/v20230517/models.rb
Overview
ListOrganizationChannels请求参数结构体
Instance Attribute Summary collapse
-
#ChannelName ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节.
-
#DeviceName ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节.
-
#OrganizationId ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节.
-
#PageNumber ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节.
-
#PageSize ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(organizationid = nil, pagesize = nil, pagenumber = nil, devicename = nil, channelname = nil) ⇒ ListOrganizationChannelsRequest
constructor
A new instance of ListOrganizationChannelsRequest.
Constructor Details
#initialize(organizationid = nil, pagesize = nil, pagenumber = nil, devicename = nil, channelname = nil) ⇒ ListOrganizationChannelsRequest
Returns a new instance of ListOrganizationChannelsRequest.
5218 5219 5220 5221 5222 5223 5224 |
# File 'lib/v20230517/models.rb', line 5218 def initialize(organizationid=nil, pagesize=nil, pagenumber=nil, devicename=nil, channelname=nil) @OrganizationId = organizationid @PageSize = pagesize @PageNumber = pagenumber @DeviceName = devicename @ChannelName = channelname end |
Instance Attribute Details
#ChannelName ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节
5216 5217 5218 |
# File 'lib/v20230517/models.rb', line 5216 def ChannelName @ChannelName end |
#DeviceName ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节
5216 5217 5218 |
# File 'lib/v20230517/models.rb', line 5216 def DeviceName @DeviceName end |
#OrganizationId ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节
5216 5217 5218 |
# File 'lib/v20230517/models.rb', line 5216 def OrganizationId @OrganizationId end |
#PageNumber ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节
5216 5217 5218 |
# File 'lib/v20230517/models.rb', line 5216 def PageNumber @PageNumber end |
#PageSize ⇒ Object
查询条件同时只有一个生效。长度不超过32字节 查询条件同时只有一个生效。长度不超过32字节
5216 5217 5218 |
# File 'lib/v20230517/models.rb', line 5216 def PageSize @PageSize end |
Instance Method Details
#deserialize(params) ⇒ Object
5226 5227 5228 5229 5230 5231 5232 |
# File 'lib/v20230517/models.rb', line 5226 def deserialize(params) @OrganizationId = params['OrganizationId'] @PageSize = params['PageSize'] @PageNumber = params['PageNumber'] @DeviceName = params['DeviceName'] @ChannelName = params['ChannelName'] end |