Represents a payment instrument, used for Deposit or Withdrawal.

interface PaymentInstrument {
    customerId?: string;
    id?: string;
    instrumentType: InstrumentType;
    status?: PaymentInstrumentStatus;
}

Hierarchy (view full)

Properties

customerId?: string

The customer to which this instrument belongs.

id?: string

The instrument id.

instrumentType: InstrumentType

The instrument type.

The instrument status.