Class: TencentCloud::Wav::V20210129::QueryChannelCodeListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryChannelCodeListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryChannelCodeList返回参数结构体
Instance Attribute Summary collapse
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryChannelCodeListResponse
constructor
A new instance of QueryChannelCodeListResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryChannelCodeListResponse
Returns a new instance of QueryChannelCodeListResponse.
2156 2157 2158 2159 2160 |
# File 'lib/v20210129/models.rb', line 2156 def initialize(nextcursor=nil, pagedata=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2154 2155 2156 |
# File 'lib/v20210129/models.rb', line 2154 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2154 2155 2156 |
# File 'lib/v20210129/models.rb', line 2154 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2154 2155 2156 |
# File 'lib/v20210129/models.rb', line 2154 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 |
# File 'lib/v20210129/models.rb', line 2162 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| channelcodeinnerdetail_tmp = ChannelCodeInnerDetail.new channelcodeinnerdetail_tmp.deserialize(i) @PageData << channelcodeinnerdetail_tmp end end @RequestId = params['RequestId'] end |