Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.08 KB

CatalogItem.md

File metadata and controls

31 lines (24 loc) · 1.08 KB

TalonOne::CatalogItem

Properties

Name Type Description Notes
id Integer Internal ID of this entity.
created DateTime The time this entity was created.
sku String The stock keeping unit of the item.
price Float Price of the item. [optional]
catalogid Integer The ID of the catalog the item belongs to.
version Integer The version of the catalog item.
attributes Array<ItemAttribute> [optional]
product Product [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::CatalogItem.new(id: 6,
                                 created: 2020-06-10T09:05:27.993483Z,
                                 sku: SKU1241028,
                                 price: 99.99,
                                 catalogid: 6,
                                 version: 5,
                                 attributes: null,
                                 product: null)