import { DaffCartShippingRate } from '@daffodil/cart'
Contains information about a particular shipping option.
interface DaffCartShippingRate {
carrier: string
carrier_title: string
method_code: string
method_title: string
method_description: string
price: number
}
carrier string |
---|
Identifies the shipping carrier. |
carrier_title string |
---|
A human-readable label of the shipping carrier. |
method_code string |
---|
Identifies the shipping method. |
method_title string |
---|
A human-readable label of the shipping method. |
method_description string |
---|
A human-readable description of the shipping method. |
price number |
---|
The price of the shipping option. |