Represents a payment instrument, used for Deposit or Withdrawal.

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

Hierarchy (view full)

Properties

creationTime: string

Creation time.

Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

Example

"2021-07-15T17:54:12Z"
customerId?: string

The customer to which this instrument belongs.

id?: string

The instrument id.

instrumentType: InstrumentType

The instrument type.

The instrument status.