Member Junction
    Preparing search index...

    Interface for a GL Code (Chart of Accounts) entry

    interface GLCode {
        active: boolean;
        code: string;
        currentBalance: number;
        fullyQualifiedName: string;
        id: string;
        level: number;
        name: string;
        normalBalance: "Debit" | "Credit";
        parentId?: string;
        subType: string;
        type: string;
    }
    Index

    Properties

    active: boolean
    code: string
    currentBalance: number
    fullyQualifiedName: string
    id: string
    level: number
    name: string
    normalBalance: "Debit" | "Credit"
    parentId?: string
    subType: string
    type: string