import type * as Square from "../index"; export interface ShippingFee { /** The name for the shipping fee. */ name?: string | null; /** The amount and currency for the shipping fee. */ charge: Square.Money; }