/** * @type ShippingMethodReference: Document representing a reference to a shipping method. * * @property id: The shipping method ID. * - **Max Length:** 256 * */ export type ShippingMethodReference = { id?: string; } & { [key: string]: any; };