Class: TencentCloud::Intlpartnersmgt::V20220928::QueryCreditAllocationHistoryResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Intlpartnersmgt::V20220928::QueryCreditAllocationHistoryResponse
- Defined in:
- lib/v20220928/models.rb
Overview
QueryCreditAllocationHistory返回参数结构体
Instance Attribute Summary collapse
-
#History ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, history = nil, requestid = nil) ⇒ QueryCreditAllocationHistoryResponse
constructor
A new instance of QueryCreditAllocationHistoryResponse.
Constructor Details
#initialize(total = nil, history = nil, requestid = nil) ⇒ QueryCreditAllocationHistoryResponse
Returns a new instance of QueryCreditAllocationHistoryResponse.
267 268 269 270 271 |
# File 'lib/v20220928/models.rb', line 267 def initialize(total=nil, history=nil, requestid=nil) @Total = total @History = history @RequestId = requestid end |
Instance Attribute Details
#History ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
265 266 267 |
# File 'lib/v20220928/models.rb', line 265 def History @History end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
265 266 267 |
# File 'lib/v20220928/models.rb', line 265 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
265 266 267 |
# File 'lib/v20220928/models.rb', line 265 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/v20220928/models.rb', line 273 def deserialize(params) @Total = params['Total'] unless params['History'].nil? @History = [] params['History'].each do |i| querycreditallocationhistorydata_tmp = QueryCreditAllocationHistoryData.new querycreditallocationhistorydata_tmp.deserialize(i) @History << querycreditallocationhistorydata_tmp end end @RequestId = params['RequestId'] end |