interface CreditTransaction {
    amount: number;
    balanceAfter: number;
    id: string;
    note: null | string;
    relatedRecordId: null | string;
    stripePaymentIntentId: null | string;
    timestamp: number;
    type: node.common.apis.billing.TransactionType;
}

Properties

amount: number
balanceAfter: number
id: string
note: null | string
relatedRecordId: null | string
stripePaymentIntentId: null | string
timestamp: number