Becomes the shippingInfo of the imported Order.

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

Properties

deliveries?: DeliveryDraft[]

Information on how items are to be delivered to customers.

Discounted Price of the Shipping Method.

price: _Money

The base price for the Shipping Method.

Include a value to associate a Shipping Method with the Order.

shippingMethodName: string

Name of the Shipping Method.

shippingMethodState?: string

Indicates if the ShippingMethod referenced is allowed for the Order or not.

shippingRate: ShippingRateDraft

Shipping rate information for the Order.

Include a value to associate a Tax Category with the shipping information.

taxRate?: TaxRate

Include a Tax Rate for the Shipping Method.