Interface IapticTokenTransaction

A transaction that has occurred.

interface IapticTokenTransaction {
    amount: number;
    timestamp: number;
    transactionId: string;
    type: string;
}

Properties

amount: number

Number of tokens earned (positive) or spent (negative) for this transaction

timestamp: number

When the transaction occurred

transactionId: string

Unique identifier from the store

type: string

Type of token (e.g., 'gem', 'coin', 'credit')