Pennylane API Client
    Preparing search index...

    Interface UpdateImportedCustomerInvoiceBody

    Payload for updating an imported customer invoice.

    interface UpdateImportedCustomerInvoiceBody {
        amount?: string;
        currency?: string;
        currency_amount?: string;
        currency_amount_before_tax?: string;
        currency_tax?: string;
        customer_id?: number;
        date?: string;
        deadline?: string;
        external_reference?: string;
        invoice_lines?: UpdateImportedCustomerInvoiceLinesBody;
        invoice_number?: string;
        tax?: string;
        transaction_reference?:
            | CreateCustomerInvoiceTransactionReferenceBody
            | null;
    }
    Index

    Properties

    amount?: string
    currency?: string
    currency_amount?: string
    currency_amount_before_tax?: string
    currency_tax?: string
    customer_id?: number
    date?: string
    deadline?: string
    external_reference?: string
    invoice_number?: string
    tax?: string
    transaction_reference?: CreateCustomerInvoiceTransactionReferenceBody | null