Show / Hide Table of Contents
    • Yort.Zip.InStore
      • CancelOrderRequest
      • CancelOrderResponse
      • CommitOrderRequest
      • CreateOrderRequest
      • CreateOrderResponse
      • EnrolRequest
      • EnrolResponse
      • IZipClient
      • OrderStatusRequest
      • OrderStatusResponse
      • RefundOrderRequest
      • RefundOrderResponse
      • RollbackOrderRequest
      • ZipApiException
      • ZipClient
      • ZipClientConfiguration
      • ZipEnvironment
      • ZipEnvironment.NewZealand
      • ZipErrorResponse
      • ZipOrder
      • ZipOrderItem
      • ZipOrderStatus
      • ZipPaymentFlow
      • ZipRequestOptionsBase
      • ZipValidationError

    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.

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

    Properties

    | Improve this Doc View Source

    Description

    A description of the item.

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Name

    A short name of the item.

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Price

    The price the item was purchased at.

    Declaration
    public decimal Price { get; set; }
    Property Value
    Type Description
    Decimal
    | Improve this Doc View Source

    Quantity

    The quantity of this item purchased.

    Declaration
    public int Quantity { get; set; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Sku

    The unique sku code of the item.

    Declaration
    public string Sku { get; set; }
    Property Value
    Type Description
    String
    • Improve this Doc
    • View Source
    Back to top Copyright (c) 2020 Troy Willmot