• Articles
  • Api Documentation

    Show / Hide Table of Contents
    • Yort.Laybuy.InStore
      • CancelOrderRequest
      • CancelOrderResponse
      • CreateOrderRequest
      • CreateOrderResponse
      • ILaybuyClient
      • LaybuyApiException
      • LaybuyApiResponseBase
      • LaybuyClient
      • LaybuyClientConfiguration
      • LaybuyCredentials
      • LaybuyCustomerAddress
      • LaybuyCustomerBase
      • LaybuyEnvironment
      • LaybuyItem
      • LaybuyOrderRefund
      • LaybuyOrderStatus
      • LaybuyRequestBase
      • LaybuyStatus
      • OrderRequest
      • OrderResponse
      • OrderStatusRequest
      • OrderStatusResponse
      • RefundRequest
      • RefundResponse
      • RequestLaybuyCustomer
      • ResponseLaybuyCustomer
      • StandardOriginData

    Class LaybuyItem

    Represents an item purchased via Laybuy.

    Inheritance
    Object
    LaybuyItem
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Yort.Laybuy.InStore
    Assembly: Yort.Laybuy.InStore.dll
    Syntax
    public class LaybuyItem

    Properties

    | Improve this Doc View Source

    Description

    The description of the product.

    Declaration
    [JsonProperty("description")]
    public string Description { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    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
    | Improve this Doc View Source

    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
    | Improve this Doc View Source

    Quantity

    The quantity of the item purchased.

    Declaration
    [JsonProperty("quantity")]
    public int Quantity { get; set; }
    Property Value
    Type Description
    Int32

    See Also

    Items
    • Improve this Doc
    • View Source
    Back to top Copyright (c) 2020 Troy Willmot