Lager - v5.2.0
    Preparing search index...

    Represents the structure of a delivery within the application.

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

    Delivery

    interface Delivery {
        amount: number;
        api_key: string;
        comment: string;
        delivery_date: string;
        id: number;
        product_id: string;
        product_name?: string;
    }
    Index

    Properties

    amount: number

    Quantity of the product being delivered.

    api_key: string

    API key required for authentication to perform delivery-related operations.

    comment: string

    Additional comments or instructions for the delivery.

    delivery_date: string

    Scheduled date for the delivery.

    id: number

    Unique identifier for the delivery.

    product_id: string

    Identifier for the product being delivered.

    product_name?: string

    Optional. Name of the product being delivered.