Class: TencentCloud::Intlpartnersmgt::V20220928::QueryCreditAllocationHistoryResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20220928/models.rb

Overview

QueryCreditAllocationHistory返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#HistoryObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Total:

    历史信息总条数

  • History:

    历史信息详细列表数据

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



265
266
267
# File 'lib/v20220928/models.rb', line 265

def History
  @History
end

#RequestIdObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Total:

    历史信息总条数

  • History:

    历史信息详细列表数据

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



265
266
267
# File 'lib/v20220928/models.rb', line 265

def RequestId
  @RequestId
end

#TotalObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Total:

    历史信息总条数

  • History:

    历史信息详细列表数据

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



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