Interface CreateOrderInput

The CreateOrderInput used by the constructor of CreateOrder

interface CreateOrderInput {
    currency: string;
    externalId?: string;
    orderLines: OrderLine[];
    person: PersonIdentifier;
}

Properties

currency: string

currency the order was placed in.

externalId?: string

external identifier, not use for anything internally

orderLines: OrderLine[]

order lines to be fulfilled

first name on the order.