Class: ChannelAdvisor::TaxServiceSOAP::TaxRateResult

Inherits:
Object
  • Object
show all
Defined in:
lib/channel_advisor/tax_service/types.rb

Overview

/TaxRateResult

taxAmount - SOAP::SOAPDecimal
taxType - ChannelAdvisor::TaxServiceSOAP::TaxTypeCode
itemDetailList - ChannelAdvisor::TaxServiceSOAP::ArrayOfTaxItemBase

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(taxAmount = nil, taxType = nil, itemDetailList = nil) ⇒ TaxRateResult

Returns a new instance of TaxRateResult.



36
37
38
39
40
# File 'lib/channel_advisor/tax_service/types.rb', line 36

def initialize(taxAmount = nil, taxType = nil, itemDetailList = nil)
  @taxAmount = taxAmount
  @taxType = taxType
  @itemDetailList = itemDetailList
end

Instance Attribute Details

#itemDetailListObject

Returns the value of attribute itemDetailList.



34
35
36
# File 'lib/channel_advisor/tax_service/types.rb', line 34

def itemDetailList
  @itemDetailList
end

#taxAmountObject

Returns the value of attribute taxAmount.



32
33
34
# File 'lib/channel_advisor/tax_service/types.rb', line 32

def taxAmount
  @taxAmount
end

#taxTypeObject

Returns the value of attribute taxType.



33
34
35
# File 'lib/channel_advisor/tax_service/types.rb', line 33

def taxType
  @taxType
end