Pennylane API Client
    Preparing search index...

    Interface CreateCustomerInvoiceProductLineBody

    Product-based invoice line payload.

    interface CreateCustomerInvoiceProductLineBody {
        description?: string | null;
        discount?: { type: "absolute" | "relative"; value: string };
        imputation_dates?: CreateCustomerInvoiceLineImputationDatesBody | null;
        label?: string;
        ledger_account_id?: number;
        product_id: number;
        quantity: number;
        raw_currency_unit_price?: string;
        section_rank?: number;
        unit?: string;
        vat_rate?: string;
    }
    Index

    Properties

    description?: string | null
    discount?: { type: "absolute" | "relative"; value: string }
    label?: string
    ledger_account_id?: number
    product_id: number
    quantity: number
    raw_currency_unit_price?: string
    section_rank?: number
    unit?: string
    vat_rate?: string