Interface StagedOrderChangeLineItemQuantityAction

interface StagedOrderChangeLineItemQuantityAction {
    action: "changeLineItemQuantity";
    externalPrice?: _Money;
    externalTotalPrice?: ExternalLineItemTotalPrice;
    lineItemId: string;
    quantity: number;
}

Properties

action: "changeLineItemQuantity"
externalPrice?: _Money

Draft type that stores amounts only in cent precision for the specified currency.

externalTotalPrice?: ExternalLineItemTotalPrice
lineItemId: string
quantity: number

Generated using TypeDoc