Lager - v5.2.0
    Preparing search index...

    Represents the structure and data of an invoice in the system.

    Invoice

    interface Invoice {
        address: string;
        city: string;
        country: string;
        creation_date: Date;
        due_date: Date;
        id: number;
        name: string;
        order_id: number;
        total_price: number;
        zip: string;
    }
    Index

    Properties

    address: string

    The billing address for the invoice.

    city: string

    The city of the billing address.

    country: string

    The country of the billing address.

    creation_date: Date

    The date when the invoice was created.

    due_date: Date

    The date by which the invoice should be paid.

    id: number

    The unique identifier of the invoice.

    name: string

    The name of the customer or entity associated with the invoice.

    order_id: number

    The identifier of the order associated with this invoice.

    total_price: number

    The total price or cost represented by the invoice.

    zip: string

    The postal code for the billing address.