Simple fee payment structure that contains fee details. If the fee is in the context of specific Transfer, Deposit or Withdrawal object and is in the same currency the currency property might be omitted.

interface SimpleFeePayment {
    amount: number;
    currency?: string;
    paymentReason: FeePaymentReason;
}

Properties

amount: number

Amount of the merchant payment, in mintor units. If currency is not specified, then the main transaction currency is used.

currency?: string

Currency alphabetic code as specified by ISO 4217.

Example

"EUR"
paymentReason: FeePaymentReason

Fee payment reason.