Lager - v5.2.0
    Preparing search index...

    Represents the structure of an order entity within the application.

    This interface is utilized for type-checking and ensuring consistency in order data handling.

    Order

    interface Order {
        address: string;
        api_key: string;
        city: string;
        country: string;
        id: number;
        image_url: null | string;
        name: string;
        order_items: [] | OrderItemType[];
        status: string;
        status_id: number;
        zip: string;
    }
    Index

    Properties

    address: string

    The address associated with the order.

    api_key: string

    An API key associated with the order for identification or integration purposes.

    city: string

    The city of the order's address.

    country: string

    The country of the order's address.

    id: number

    Unique identifier for the order.

    image_url: null | string

    The URL of the image associated with the order, if any.

    name: string

    The name of the order.

    order_items: [] | OrderItemType[]

    An array of order items included in the order.

    status: string

    The current status of the order.

    status_id: number

    The identifier for the order's status.

    zip: string

    The ZIP code of the order's address.