Class: ChannelAdvisor::TaxServiceSOAP::TaxRateResult
- Inherits:
-
Object
- Object
- ChannelAdvisor::TaxServiceSOAP::TaxRateResult
- 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
-
#itemDetailList ⇒ Object
Returns the value of attribute itemDetailList.
-
#taxAmount ⇒ Object
Returns the value of attribute taxAmount.
-
#taxType ⇒ Object
Returns the value of attribute taxType.
Instance Method Summary collapse
-
#initialize(taxAmount = nil, taxType = nil, itemDetailList = nil) ⇒ TaxRateResult
constructor
A new instance of TaxRateResult.
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
#itemDetailList ⇒ Object
Returns the value of attribute itemDetailList.
34 35 36 |
# File 'lib/channel_advisor/tax_service/types.rb', line 34 def itemDetailList @itemDetailList end |
#taxAmount ⇒ Object
Returns the value of attribute taxAmount.
32 33 34 |
# File 'lib/channel_advisor/tax_service/types.rb', line 32 def taxAmount @taxAmount end |
#taxType ⇒ Object
Returns the value of attribute taxType.
33 34 35 |
# File 'lib/channel_advisor/tax_service/types.rb', line 33 def taxType @taxType end |