GitHub

DaffCartShippingRate

Contains information about a particular shipping option.

import { DaffCartShippingRate } from '@daffodil/cart'
interface DaffCartShippingRate {
  carrier: string
  carrier_title: string
  method_code: string
  method_title: string
  method_description: string
  price: number
}

Properties

Name Type Description
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.