Class: TencentCloud::Cpdp::V20190820::QueryAgentTaxPaymentBatchResponse

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

Overview

QueryAgentTaxPaymentBatch返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agenttaxpaymentbatch = nil, requestid = nil) ⇒ QueryAgentTaxPaymentBatchResponse

Returns a new instance of QueryAgentTaxPaymentBatchResponse.



14836
14837
14838
14839
# File 'lib/v20190820/models.rb', line 14836

def initialize(agenttaxpaymentbatch=nil, requestid=nil)
  @AgentTaxPaymentBatch = agenttaxpaymentbatch
  @RequestId = requestid
end

Instance Attribute Details

#AgentTaxPaymentBatchObject

Parameters:

  • AgentTaxPaymentBatch:

    代理商完税证明批次信息

  • RequestId:

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



14834
14835
14836
# File 'lib/v20190820/models.rb', line 14834

def AgentTaxPaymentBatch
  @AgentTaxPaymentBatch
end

#RequestIdObject

Parameters:

  • AgentTaxPaymentBatch:

    代理商完税证明批次信息

  • RequestId:

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



14834
14835
14836
# File 'lib/v20190820/models.rb', line 14834

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



14841
14842
14843
14844
14845
14846
14847
# File 'lib/v20190820/models.rb', line 14841

def deserialize(params)
  unless params['AgentTaxPaymentBatch'].nil?
    @AgentTaxPaymentBatch = AgentTaxPaymentBatch.new
    @AgentTaxPaymentBatch.deserialize(params['AgentTaxPaymentBatch'])
  end
  @RequestId = params['RequestId']
end