Class: TencentCloud::Essbasic::V20210526::DescribeChannelOrganizationsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::DescribeChannelOrganizationsResponse
- Defined in:
- lib/v20210526/models.rb
Overview
DescribeChannelOrganizations返回参数结构体
Instance Attribute Summary collapse
- #ChannelOrganizationInfos ⇒ Object
- #Limit ⇒ Object
- #Offset ⇒ Object
- #RequestId ⇒ Object
- #Total ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(channelorganizationinfos = nil, offset = nil, limit = nil, total = nil, requestid = nil) ⇒ DescribeChannelOrganizationsResponse
constructor
A new instance of DescribeChannelOrganizationsResponse.
Constructor Details
#initialize(channelorganizationinfos = nil, offset = nil, limit = nil, total = nil, requestid = nil) ⇒ DescribeChannelOrganizationsResponse
Returns a new instance of DescribeChannelOrganizationsResponse.
7958 7959 7960 7961 7962 7963 7964 |
# File 'lib/v20210526/models.rb', line 7958 def initialize(channelorganizationinfos=nil, offset=nil, limit=nil, total=nil, requestid=nil) @ChannelOrganizationInfos = channelorganizationinfos @Offset = offset @Limit = limit @Total = total @RequestId = requestid end |
Instance Attribute Details
#ChannelOrganizationInfos ⇒ Object
7956 7957 7958 |
# File 'lib/v20210526/models.rb', line 7956 def ChannelOrganizationInfos @ChannelOrganizationInfos end |
#Limit ⇒ Object
7956 7957 7958 |
# File 'lib/v20210526/models.rb', line 7956 def Limit @Limit end |
#Offset ⇒ Object
7956 7957 7958 |
# File 'lib/v20210526/models.rb', line 7956 def Offset @Offset end |
#RequestId ⇒ Object
7956 7957 7958 |
# File 'lib/v20210526/models.rb', line 7956 def RequestId @RequestId end |
#Total ⇒ Object
7956 7957 7958 |
# File 'lib/v20210526/models.rb', line 7956 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 |
# File 'lib/v20210526/models.rb', line 7966 def deserialize(params) unless params['ChannelOrganizationInfos'].nil? @ChannelOrganizationInfos = [] params['ChannelOrganizationInfos'].each do |i| channelorganizationinfo_tmp = ChannelOrganizationInfo.new channelorganizationinfo_tmp.deserialize(i) @ChannelOrganizationInfos << channelorganizationinfo_tmp end end @Offset = params['Offset'] @Limit = params['Limit'] @Total = params['Total'] @RequestId = params['RequestId'] end |