Class LaybuyItem
Represents an item purchased via Laybuy.
Inherited Members
Namespace: Yort.Laybuy.InStore
Assembly: Yort.Laybuy.InStore.dll
Syntax
public class LaybuyItem
Properties
| Improve this Doc View SourceDescription
The description of the product.
Declaration
[JsonProperty("description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
Id
The merchant's unique identifier (id, PLU/SKU, barcode, etc.) for the product.
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
String |
Price
The unit price of the product, in the currency specified on the CreateOrderRequest.
Declaration
[JsonProperty("price")]
public decimal Price { get; set; }
Property Value
Type | Description |
---|---|
Decimal |
Quantity
The quantity of the item purchased.
Declaration
[JsonProperty("quantity")]
public int Quantity { get; set; }
Property Value
Type | Description |
---|---|
Int32 |