Class ZipOrderItem
Represents information about an item purchased on a Zip order, used to show the end-consumer details of their purchase in the Zip consumer portal.
Inherited Members
Namespace: Yort.Zip.InStore
Assembly: Yort.Zip.InStore.dll
Syntax
public class ZipOrderItem
Properties
| Improve this Doc View SourceDescription
A description of the item.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
Name
A short name of the item.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Price
The price the item was purchased at.
Declaration
public decimal Price { get; set; }
Property Value
Type | Description |
---|---|
Decimal |
Quantity
The quantity of this item purchased.
Declaration
public int Quantity { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Sku
The unique sku code of the item.
Declaration
public string Sku { get; set; }
Property Value
Type | Description |
---|---|
String |