salt-sdk
    Preparing search index...

    Interface TransactionObject

    Transaction object as stored in the Salt database

    interface TransactionObject {
        _id: string;
        account_id: string;
        broadcastReceipt: string | TransactionReceipt | null;
        combined: boolean;
        lastUpdated?: string;
        organisation_id: string;
        params: TransactionObjectParams;
        policyCheck: PolicyCheck;
        proposeReceipt: ContractReceipt;
        signatures: ContractReceipt[];
        state: TRANSACTION_STATE;
    }
    Index

    Properties

    _id: string
    account_id: string
    broadcastReceipt: string | TransactionReceipt | null
    combined: boolean
    lastUpdated?: string
    organisation_id: string
    policyCheck: PolicyCheck
    proposeReceipt: ContractReceipt
    signatures: ContractReceipt[]