Lager - v5.2.0
    Preparing search index...

    Describes the structure for updating an existing order's information.

    This interface outlines both the required fields for identifying the order and the optional fields that can be updated.

    OrderUpdate

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

    Properties

    address?: string

    Optional. New or updated address associated with the order.

    api_key: string

    An API key required for order update operations.

    city?: string

    Optional. New or updated city of the order's address.

    country?: string

    Optional. New or updated country of the order's address.

    id: number

    The unique identifier of the order to be updated.

    image_url?: string

    Optional. New or updated URL of the image associated with the order.

    name: string

    The new name of the order.

    status_id?: number

    Optional. New or updated identifier for the order's status.

    zip?: string

    Optional. New or updated ZIP code of the order's address.