interface ApplePayShippingMethod {
    amount: number;
    detail?: string;
    identifier?: string;
    label: string;
}

Properties

amount: number

Required: Integer amount in cents (e.g., 500 for 5.00).

detail?: string

Optional: Human-readable detail (e.g., SLA/ETA).

identifier?: string

Optional: Shipping method identifier you control (e.g., "standard", "express").

label: string

Required: Visible label for the shipping method.