interface EntryLineE {
    account: Windev.Account.Account;
    credit?: number;
    currency: string;
    deadline?: string;
    debit?: number;
    flags?: {
        leasing: {
            company: { value: number };
            leasing: {
                bank_account_id: number;
                comment: string;
                contract_number: string;
                contract_type_id: number;
                id: number;
                is_deductible_vat: boolean;
                is_expired: boolean;
                is_tax_deduction: boolean;
                payment_count: number;
                payment_type_id: number;
                period_id: number;
                personal_account_id: number;
                tax_deduction_value: number;
                title: string;
            };
            payments?: Payment[];
            property_cost: { actual: number; original: number };
        };
    };
    label: string;
    lettrage?: null
    | string;
    line_entry_id: number;
    piece?: string;
    piece2?: string;
}

Hierarchy (View Summary)

Properties

credit?: number
currency: string
deadline?: string
debit?: number
flags?: {
    leasing: {
        company: { value: number };
        leasing: {
            bank_account_id: number;
            comment: string;
            contract_number: string;
            contract_type_id: number;
            id: number;
            is_deductible_vat: boolean;
            is_expired: boolean;
            is_tax_deduction: boolean;
            payment_count: number;
            payment_type_id: number;
            period_id: number;
            personal_account_id: number;
            tax_deduction_value: number;
            title: string;
        };
        payments?: Payment[];
        property_cost: { actual: number; original: number };
    };
}
label: string
lettrage?: null | string
line_entry_id: number
piece?: string
piece2?: string