interface ShippingInfoImportDraft {
    deliveries?: DeliveryDraft[];
    discountedPrice?: DiscountedLineItemPriceDraft;
    price: _Money;
    shippingMethod?: ShippingMethodResourceIdentifier;
    shippingMethodName: string;
    shippingMethodState?: string;
    shippingRate: ShippingRateDraft;
    taxCategory?: TaxCategoryResourceIdentifier;
    taxRate?: TaxRate;
}

Properties

deliveries?: DeliveryDraft[]

Deliveries are compilations of information on how the articles are being delivered to the customers.

price: _Money

Not set if custom shipping method is used.

shippingMethodName: string
shippingMethodState?: string

Indicates whether the ShippingMethod referenced is allowed for the cart or not.

shippingRate: ShippingRateDraft

The shipping rate used to determine the price.

taxRate?: TaxRate

Generated using TypeDoc