Sha256: 97c1fc90dce8ad4bda6ccc8db02039040af01c6019ac5b0d16f048e18facde32
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
# 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>**](ItemAttribute.md) | | [optional] **product** | [**Product**](Product.md) | | [optional] ## Code Sample ```ruby 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) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
talon_one-7.0.0 | docs/CatalogItem.md |
talon_one-6.0.0 | docs/CatalogItem.md |
talon_one-5.0.0 | docs/CatalogItem.md |