In this interface we will see the structure of an order with shipping forms
export interface OrderWithShippingMethods extends Omit<OrderResponse, 'token' | 'shipping_rate'> { shipping_methods: ShippingMethod[];}
Generated using TypeDoc
In this interface we will see the structure of an order with shipping forms