ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface ChartAccount {
        id: string;
        code: string;
        name: string;
        type: "ASSET" | "LIABILITY" | "EQUITY" | "REVENUE" | "EXPENSE";
        level: number;
        parentId?: string;
        parent?: { id: string; code: string; name: string };
        children?: ChartAccount[];
        description?: string;
        category?: string;
        isActive: boolean;
        balance: number;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    id: string
    code: string
    name: string
    type: "ASSET" | "LIABILITY" | "EQUITY" | "REVENUE" | "EXPENSE"
    level: number
    parentId?: string
    parent?: { id: string; code: string; name: string }
    children?: ChartAccount[]
    description?: string
    category?: string
    isActive: boolean
    balance: number
    createdAt: Date
    updatedAt: Date