import type { ShippingMethod } from './ShippingMethod'; /** * @type ShippingMethodResult: Result document containing shipping methods. * * @property applicableShippingMethods: The applicable shipping method documents. It is read only. * * @property defaultShippingMethodId: The default shipping method. It is read only. * */ export type ShippingMethodResult = { applicableShippingMethods?: Array; defaultShippingMethodId?: string; } & { [key: string]: any; };