Class: ChannelAdvisor::CartServiceSOAP::InventoryItemBase

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

Overview

http://api.channeladvisor.com/datacontracts/ordersInventoryItemBase abstract

sKU - SOAP::SOAPString
title - SOAP::SOAPString

Direct Known Subclasses

CartItem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(sKU = nil, title = nil) ⇒ InventoryItemBase

Returns a new instance of InventoryItemBase.



116
117
118
119
# File 'lib/channel_advisor/cart_service/types.rb', line 116

def initialize(sKU = nil, title = nil)
  @sKU = sKU
  @title = title
end

Instance Attribute Details

#sKUObject

Returns the value of attribute sKU.



113
114
115
# File 'lib/channel_advisor/cart_service/types.rb', line 113

def sKU
  @sKU
end

#titleObject

Returns the value of attribute title.



114
115
116
# File 'lib/channel_advisor/cart_service/types.rb', line 114

def title
  @title
end