import type { ShippingPromotion } from './ShippingPromotion'; /** * @type ShippingMethod: Document representing a shipping method. * * @property description: The localized description of the shipping method. * * @property externalShippingMethod: The external shipping method. * * @property id: The shipping method ID. * - **Max Length:** 256 * * @property name: The localized name of the shipping method. * * @property price: The shipping cost total, including shipment level costs, product level fix, and surcharge costs. It is read only. * * @property shippingPromotions: The array of active customer shipping promotions for this shipping method. This array can be empty. * */ export type ShippingMethod = { description?: string; externalShippingMethod?: string; id: string; name?: string; price?: number; shippingPromotions?: Array; } & { [key: string]: any; };