interface OrderAddDeliveryAction {
    action: "addDelivery";
    address?: _BaseAddress;
    custom?: CustomFieldsDraft;
    items?: DeliveryItem[];
    parcels?: ParcelDraft[];
    shippingKey?: string;
}

Properties

action: "addDelivery"
address?: _BaseAddress

Polymorphic base type that represents a postal address and contact details. Depending on the read or write action, it can be either Address or AddressDraft that only differ in the data type for the optional custom field.

Custom Fields for the Transaction.

items?: DeliveryItem[]
parcels?: ParcelDraft[]
shippingKey?: string

User-defined unique identifier of the Shipping Method in a Cart with Multi ShippingMode.

Generated using TypeDoc