Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ShippingRate

In this interface we will see the structure of ShippingRate

export interface ShippingRate {
service_name: string;
description: string;
cost: number;
tax_amount: number;
display_tax_amount: string;
reference: string;
estimated_delivery_date: string;
tax_code: string;
}

Hierarchy

  • ShippingRate

Index

Properties

cost: number
description: string
display_tax_amount: string
estimated_delivery_date: string
reference: string
service_name: string
tax_amount: number
tax_code: string

Generated using TypeDoc