@kagamidigital/salt-sdk-mirror
    Preparing search index...

    Interface TransactionObject

    Transaction record using DB field names (_id/account_id/organisation_id). This is the shape the SDK sends when creating or updating a transaction; responses come back as AccountTransaction.

    interface TransactionObject {
        _id: string;
        account_id: string;
        broadcastReceipt: TransactionReceipt | null;
        lastUpdated?: string;
        metadata: TransactionMetadata;
        organisation_id: string;
        params: TransactionObjectParams;
        policyCheck: PolicyCheck | null;
        state: TRANSACTION_STATE;
    }
    Index

    Properties

    _id: string
    account_id: string
    broadcastReceipt: TransactionReceipt | null
    lastUpdated?: string
    organisation_id: string
    policyCheck: PolicyCheck | null