Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface OrderWithShippingMethods

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[];
}

Hierarchy

Index

Properties

Properties

order: Order
shipping_methods: ShippingMethod[]

Generated using TypeDoc