interface OrderFromQuoteDraft {
    orderNumber?: string;
    orderState?: string;
    paymentState?: string;
    quote: QuoteResourceIdentifier;
    quoteStateToAccepted?: boolean;
    shipmentState?: string;
    state?: StateResourceIdentifier;
    version: number;
}

Properties

orderNumber?: string

User-defined identifier for the Order that is unique across a Project. Once set, the value cannot be changed.

orderState?: string

Current status for the Order.

paymentState?: string

Payment status for the Order.

ResourceIdentifier to the Quote from which the Order is created. If the referenced Quote has expired (validTo check) or its quoteState is Accepted, Declined, or Withdrawn, the Order creation will fail.

quoteStateToAccepted?: boolean

If true, the quoteState of the referenced Quote will be set to Accepted.

shipmentState?: string

Shipment status for the Order.

State of the Order in a custom workflow.

version: number

version of the Quote from which the Order is created.