Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ShippingMethod

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

Hierarchy

  • ShippingMethod

Index

Properties

code: string
cost: number
display_cost: string
display_tax_amount: string
max_delivery_date: string
min_delivery_date: string
name: string
scheduler?: SchedulerDays[]
tax_amount: number

Generated using TypeDoc