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.



361
362
363
364
365
366
367
368
369
# File 'lib/channel_advisor/shipping_service/types.rb', line 361

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.



353
354
355
# File 'lib/channel_advisor/shipping_service/types.rb', line 353

def accountID
  @accountID
end

#cartIDObject

Returns the value of attribute cartID.



354
355
356
# File 'lib/channel_advisor/shipping_service/types.rb', line 354

def cartID
  @cartID
end

#cityObject

Returns the value of attribute city.



356
357
358
# File 'lib/channel_advisor/shipping_service/types.rb', line 356

def city
  @city
end

#countryObject

Returns the value of attribute country.



359
360
361
# File 'lib/channel_advisor/shipping_service/types.rb', line 359

def country
  @country
end

#postalCodeObject

Returns the value of attribute postalCode.



358
359
360
# File 'lib/channel_advisor/shipping_service/types.rb', line 358

def postalCode
  @postalCode
end

#stateObject

Returns the value of attribute state.



357
358
359
# File 'lib/channel_advisor/shipping_service/types.rb', line 357

def state
  @state
end

#streetObject

Returns the value of attribute street.



355
356
357
# File 'lib/channel_advisor/shipping_service/types.rb', line 355

def street
  @street
end