Class: TencentCloud::Wav::V20210129::QueryClueInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryClueInfoListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryClueInfoList返回参数结构体
Instance Attribute Summary collapse
-
#HasMore ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagedata = nil, nextcursor = nil, hasmore = nil, requestid = nil) ⇒ QueryClueInfoListResponse
constructor
A new instance of QueryClueInfoListResponse.
Constructor Details
#initialize(pagedata = nil, nextcursor = nil, hasmore = nil, requestid = nil) ⇒ QueryClueInfoListResponse
Returns a new instance of QueryClueInfoListResponse.
2273 2274 2275 2276 2277 2278 |
# File 'lib/v20210129/models.rb', line 2273 def initialize(pagedata=nil, nextcursor=nil, hasmore=nil, requestid=nil) @PageData = pagedata @NextCursor = nextcursor @HasMore = hasmore @RequestId = requestid end |
Instance Attribute Details
#HasMore ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2271 2272 2273 |
# File 'lib/v20210129/models.rb', line 2271 def HasMore @HasMore end |
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2271 2272 2273 |
# File 'lib/v20210129/models.rb', line 2271 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2271 2272 2273 |
# File 'lib/v20210129/models.rb', line 2271 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2271 2272 2273 |
# File 'lib/v20210129/models.rb', line 2271 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 |
# File 'lib/v20210129/models.rb', line 2280 def deserialize(params) unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| clueinfodetail_tmp = ClueInfoDetail.new clueinfodetail_tmp.deserialize(i) @PageData << clueinfodetail_tmp end end @NextCursor = params['NextCursor'] @HasMore = params['HasMore'] @RequestId = params['RequestId'] end |