@argantom/argantom
    Preparing search index...

    Interface Record

    An accounting record.

    interface Record {
        date: StrDate;
        expense?: Val;
        income?: Val;
        metadata?: any;
        recordId: string;
    }
    Index

    Properties

    date: StrDate

    The date for this record.

    expense?: Val

    Any expenses associated with this record.

    income?: Val

    Any income associated with this record.

    metadata?: any

    Any free-form metadata associated with this record.

    recordId: string

    The identifier for this record. Set this to empty string ("") when creating a new record.