Pennylane API Client
    Preparing search index...

    Interface ImportCustomerInvoiceLineBody

    Invoice line payload for importing a customer invoice.

    interface ImportCustomerInvoiceLineBody {
        amount?: string;
        currency_amount: string;
        currency_tax: string;
        description?: string | null;
        imputation_dates?: CreateCustomerInvoiceLineImputationDatesBody | null;
        label?: string;
        ledger_account_id?: number;
        ledger_entry_line?: ImportCustomerInvoiceLedgerEntryLineBody;
        product_id?: number;
        quantity: number;
        raw_currency_unit_price: string;
        tax?: string;
        unit: string;
        vat_rate: string;
    }
    Index

    Properties

    amount?: string
    currency_amount: string
    currency_tax: string
    description?: string | null
    label?: string
    ledger_account_id?: number

    Optional Readonlyledger_entry_line

    product_id?: number
    quantity: number
    raw_currency_unit_price: string
    tax?: string
    unit: string
    vat_rate: string