interface TransactionAttributes {
    actionType: ACTION_TYPE;
    date: number;
    historyEditSuggestions?: HistoryEditSuggestion[];
    objects: TransactionObject<TransactionObjectUnionType>[];
    transactionID: string;
    userID: number;
}

Properties

actionType: ACTION_TYPE
date: number
historyEditSuggestions?: HistoryEditSuggestion[]
transactionID: string
userID: number