Class: ChannelAdvisor::InventoryServiceSOAP::StoreInfo

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

Overview

/StoreInfo

displayInStore - SOAP::SOAPBoolean
title - SOAP::SOAPString
description - SOAP::SOAPString
categoryID - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(displayInStore = nil, title = nil, description = nil, categoryID = nil) ⇒ StoreInfo

Returns a new instance of StoreInfo.



327
328
329
330
331
332
# File 'lib/channel_advisor/inventory_service/types.rb', line 327

def initialize(displayInStore = nil, title = nil, description = nil, categoryID = nil)
  @displayInStore = displayInStore
  @title = title
  @description = description
  @categoryID = categoryID
end

Instance Attribute Details

#categoryIDObject

Returns the value of attribute categoryID.



325
326
327
# File 'lib/channel_advisor/inventory_service/types.rb', line 325

def categoryID
  @categoryID
end

#descriptionObject

Returns the value of attribute description.



324
325
326
# File 'lib/channel_advisor/inventory_service/types.rb', line 324

def description
  @description
end

#displayInStoreObject

Returns the value of attribute displayInStore.



322
323
324
# File 'lib/channel_advisor/inventory_service/types.rb', line 322

def displayInStore
  @displayInStore
end

#titleObject

Returns the value of attribute title.



323
324
325
# File 'lib/channel_advisor/inventory_service/types.rb', line 323

def title
  @title
end