Class: ChannelAdvisor::CartServiceSOAP::ModifyCart

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

Overview

/ModifyCart

accountID - SOAP::SOAPString
cartID - SOAP::SOAPInt
buyerEmail - SOAP::SOAPString
lineItem - ChannelAdvisor::CartServiceSOAP::ArrayOfCartItemRequest

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(accountID = nil, cartID = nil, buyerEmail = nil, lineItem = nil) ⇒ ModifyCart

Returns a new instance of ModifyCart.



354
355
356
357
358
359
# File 'lib/channel_advisor/cart_service/types.rb', line 354

def initialize(accountID = nil, cartID = nil, buyerEmail = nil, lineItem = nil)
  @accountID = accountID
  @cartID = cartID
  @buyerEmail = buyerEmail
  @lineItem = lineItem
end

Instance Attribute Details

#accountIDObject

Returns the value of attribute accountID.



349
350
351
# File 'lib/channel_advisor/cart_service/types.rb', line 349

def accountID
  @accountID
end

#buyerEmailObject

Returns the value of attribute buyerEmail.



351
352
353
# File 'lib/channel_advisor/cart_service/types.rb', line 351

def buyerEmail
  @buyerEmail
end

#cartIDObject

Returns the value of attribute cartID.



350
351
352
# File 'lib/channel_advisor/cart_service/types.rb', line 350

def cartID
  @cartID
end

#lineItemObject

Returns the value of attribute lineItem.



352
353
354
# File 'lib/channel_advisor/cart_service/types.rb', line 352

def lineItem
  @lineItem
end