Represents a withdrawal option.

interface WithdrawalOption {
    instrumentTypes: InstrumentType[];
    paymentOption: PaymentOptionType;
    paymentOptionSettings?: PaymentOptionSettings;
}

Properties

instrumentTypes: InstrumentType[]

The list of instrument types.

paymentOption: PaymentOptionType

The payment option.

paymentOptionSettings?: PaymentOptionSettings

The payment option settings.