interface Transaction {
    accountId: string;
    amount?: number;
    balance?: number;
    cardPaymentDetails?: CardPaymentDetails;
    creationTime?: string;
    currencyCode?: string;
    customerId: string;
    direction: TransactionDirection;
    fee?: number;
    fees?: SimpleFeePayment[];
    fxAmount?: FxAmount;
    id: string;
    instrumentId?: string;
    instrumentType?: InstrumentType;
    lastChangeDate?: string;
    merchantRefNum?: string;
    paymentType?: PaymentOptionType;
    peerDetails?: PeerDetails;
    recipientReference?: string;
    slipId: string;
    status: TransactionStatus;
    statusReason?: string;
    transferDetails?: TransferDetails;
    type?: TransactionType;
}

Properties

accountId: string
amount?: number
balance?: number
cardPaymentDetails?: CardPaymentDetails
creationTime?: string
currencyCode?: string
customerId: string
fee?: number
fxAmount?: FxAmount
id: string
instrumentId?: string
instrumentType?: InstrumentType
lastChangeDate?: string
merchantRefNum?: string
paymentType?: PaymentOptionType
peerDetails?: PeerDetails
recipientReference?: string
slipId: string
statusReason?: string
transferDetails?: TransferDetails

Generated using TypeDoc