Interface PaymentShippingOption

    interface PaymentShippingOption {
        amount: PaymentCurrencyAmount;
        id: string;
        label: string;
        selected?: boolean;
    }

    Properties

    id: string
    label: string
    selected?: boolean