Class: ChannelAdvisor::ShippingServiceSOAP::GetShippingRateList

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

Overview

/GetShippingRateList

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

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) ⇒ GetShippingRateList

Returns a new instance of GetShippingRateList.



187
188
189
190
191
192
193
194
195
# File 'lib/channel_advisor/shipping_service/types.rb', line 187

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

Instance Attribute Details

#accountIDObject

Returns the value of attribute accountID.



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

def accountID
  @accountID
end

#cartIDObject

Returns the value of attribute cartID.



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

def cartID
  @cartID
end

#cityObject

Returns the value of attribute city.



182
183
184
# File 'lib/channel_advisor/shipping_service/types.rb', line 182

def city
  @city
end

#countryObject

Returns the value of attribute country.



185
186
187
# File 'lib/channel_advisor/shipping_service/types.rb', line 185

def country
  @country
end

#postalCodeObject

Returns the value of attribute postalCode.



184
185
186
# File 'lib/channel_advisor/shipping_service/types.rb', line 184

def postalCode
  @postalCode
end

#stateObject

Returns the value of attribute state.



183
184
185
# File 'lib/channel_advisor/shipping_service/types.rb', line 183

def state
  @state
end

#streetObject

Returns the value of attribute street.



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

def street
  @street
end