Class: ChannelAdvisor::TaxServiceSOAP::GetTaxRateList

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

Overview

/GetTaxRateList

accountID - SOAP::SOAPString
cartID - SOAP::SOAPInt
street - SOAP::SOAPString
city - SOAP::SOAPString
state - SOAP::SOAPString
postalCode - SOAP::SOAPString
country - SOAP::SOAPString
shippingCost - SOAP::SOAPDecimal

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(accountID = nil, cartID = nil, street = nil, city = nil, state = nil, postalCode = nil, country = nil, shippingCost = nil) ⇒ GetTaxRateList

Returns a new instance of GetTaxRateList.



183
184
185
186
187
188
189
190
191
192
# File 'lib/channel_advisor/tax_service/types.rb', line 183

def initialize(accountID = nil, cartID = nil, street = nil, city = nil, state = nil, postalCode = nil, country = nil, shippingCost = nil)
  @accountID = accountID
  @cartID = cartID
  @street = street
  @city = city
  @state = state
  @postalCode = postalCode
  @country = country
  @shippingCost = shippingCost
end

Instance Attribute Details

#accountIDObject

Returns the value of attribute accountID.



174
175
176
# File 'lib/channel_advisor/tax_service/types.rb', line 174

def accountID
  @accountID
end

#cartIDObject

Returns the value of attribute cartID.



175
176
177
# File 'lib/channel_advisor/tax_service/types.rb', line 175

def cartID
  @cartID
end

#cityObject

Returns the value of attribute city.



177
178
179
# File 'lib/channel_advisor/tax_service/types.rb', line 177

def city
  @city
end

#countryObject

Returns the value of attribute country.



180
181
182
# File 'lib/channel_advisor/tax_service/types.rb', line 180

def country
  @country
end

#postalCodeObject

Returns the value of attribute postalCode.



179
180
181
# File 'lib/channel_advisor/tax_service/types.rb', line 179

def postalCode
  @postalCode
end

#shippingCostObject

Returns the value of attribute shippingCost.



181
182
183
# File 'lib/channel_advisor/tax_service/types.rb', line 181

def shippingCost
  @shippingCost
end

#stateObject

Returns the value of attribute state.



178
179
180
# File 'lib/channel_advisor/tax_service/types.rb', line 178

def state
  @state
end

#streetObject

Returns the value of attribute street.



176
177
178
# File 'lib/channel_advisor/tax_service/types.rb', line 176

def street
  @street
end