import type { PaymentCurrencyAmount } from './payment-currency-amount.js';

// https://www.w3.org/TR/payment-request/#paymentshippingoption-dictionary
export interface PaymentShippingOption {
    amount: PaymentCurrencyAmount;
    detail?: string;
    id: string;
    label: string;
    selected?: boolean;
}
