Class: TencentCloud::Wav::V20210129::QueryDealerInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryDealerInfoListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryDealerInfoList返回参数结构体
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) ⇒ QueryDealerInfoListResponse
constructor
A new instance of QueryDealerInfoListResponse.
Constructor Details
#initialize(pagedata = nil, nextcursor = nil, hasmore = nil, requestid = nil) ⇒ QueryDealerInfoListResponse
Returns a new instance of QueryDealerInfoListResponse.
2522 2523 2524 2525 2526 2527 |
# File 'lib/v20210129/models.rb', line 2522 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,表示取不到有效值。
2520 2521 2522 |
# File 'lib/v20210129/models.rb', line 2520 def HasMore @HasMore end |
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2520 2521 2522 |
# File 'lib/v20210129/models.rb', line 2520 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2520 2521 2522 |
# File 'lib/v20210129/models.rb', line 2520 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2520 2521 2522 |
# File 'lib/v20210129/models.rb', line 2520 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 |
# File 'lib/v20210129/models.rb', line 2529 def deserialize(params) unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| dealerinfo_tmp = DealerInfo.new dealerinfo_tmp.deserialize(i) @PageData << dealerinfo_tmp end end @NextCursor = params['NextCursor'] @HasMore = params['HasMore'] @RequestId = params['RequestId'] end |