Class: TencentCloud::Wav::V20210129::QueryVehicleInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryVehicleInfoListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryVehicleInfoList返回参数结构体
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) ⇒ QueryVehicleInfoListResponse
constructor
A new instance of QueryVehicleInfoListResponse.
Constructor Details
#initialize(pagedata = nil, nextcursor = nil, hasmore = nil, requestid = nil) ⇒ QueryVehicleInfoListResponse
Returns a new instance of QueryVehicleInfoListResponse.
3193 3194 3195 3196 3197 3198 |
# File 'lib/v20210129/models.rb', line 3193 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,表示取不到有效值。
3191 3192 3193 |
# File 'lib/v20210129/models.rb', line 3191 def HasMore @HasMore end |
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
3191 3192 3193 |
# File 'lib/v20210129/models.rb', line 3191 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
3191 3192 3193 |
# File 'lib/v20210129/models.rb', line 3191 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
3191 3192 3193 |
# File 'lib/v20210129/models.rb', line 3191 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 |
# File 'lib/v20210129/models.rb', line 3200 def deserialize(params) unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| vehicleinfo_tmp = VehicleInfo.new vehicleinfo_tmp.deserialize(i) @PageData << vehicleinfo_tmp end end @NextCursor = params['NextCursor'] @HasMore = params['HasMore'] @RequestId = params['RequestId'] end |