interface QuoteRequestDraft {
    cart: CartResourceIdentifier;
    cartVersion: number;
    comment: string;
    custom?: CustomFieldsDraft;
    key?: string;
    purchaseOrderNumber?: string;
    state?: StateReference;
}

Properties

Cart for which a Quote is requested. Anonymous Carts, Carts with Discount Codes, or Carts with a Multiple ShippingMode are not supported.

cartVersion: number

Current version of the referenced Cart.

comment: string

Message from the Buyer included in the Quote Request.

Custom Fields to be added to the Quote Request.

key?: string

User-defined unique identifier for the QuoteRequest.

purchaseOrderNumber?: string

Identifier for a purchase order, usually in a B2B context. The Purchase Order Number is typically entered by the Buyer.

State of this Quote Request. This reference can point to a State in a custom workflow.

Generated using TypeDoc