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.



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

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

Instance Attribute Details

#sKUObject

Returns the value of attribute sKU.



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

def sKU
  @sKU
end

#titleObject

Returns the value of attribute title.



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

def title
  @title
end