In this interface we will see the structure of ShippingMethod
export interface ShippingMethod { code: string; name: string; min_delivery_date: string; max_delivery_date: string; cost: number; display_cost: string; tax_amount: number; display_tax_amount: string; scheduler?: SchedulerDays[];}
Generated using TypeDoc
In this interface we will see the structure of ShippingMethod