Lager - v5.2.0
    Preparing search index...

    Defines the structure for creating a new order within the system. This interface specifies the required and optional fields needed when adding a new order.

    OrderCreate

    interface OrderCreate {
        address?: string;
        api_key: string;
        city?: string;
        country?: string;
        image_url?: string;
        name: string;
        status_id?: number;
        zip?: string;
    }
    Index

    Properties

    address?: string

    Optional. The address associated with the order.

    api_key: string

    An API key required for order creation operations.

    city?: string

    Optional. The city of the order's address.

    country?: string

    Optional. The country of the order's address.

    image_url?: string

    Optional. The URL of the image associated with the order.

    name: string

    The name of the new order.

    status_id?: number

    Optional. The identifier for the order's status.

    zip?: string

    Optional. The ZIP code of the order's address.