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

    Interface AccountTransaction

    A transaction record as returned to SDK callers (e.g. from getAccountTransactions, createTransaction, updateTransaction, getTransaction), with id/accountId/organisationId and an embedded PolicyCheck.

    interface AccountTransaction {
        accountId: string;
        broadcastReceipt: TransactionReceipt | null;
        id: string;
        lastUpdated?: string;
        metadata: TransactionMetadata;
        organisationId: string;
        params: TransactionObjectParams;
        policyCheck: PolicyCheck | null;
        state: TRANSACTION_STATE;
    }
    Index

    Properties

    accountId: string

    The ID of the account this transaction belongs to.

    broadcastReceipt: TransactionReceipt | null
    id: string

    The ID of the transaction.

    lastUpdated?: string

    Server-derived context for this transaction, e.g. who proposed it.

    organisationId: string

    The ID of the organisation this transaction belongs to.

    policyCheck: PolicyCheck | null

    The policy-check run for this transaction, or null when the backend has not run a check for this record. Policies are in canonical Policy form.