ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface Order {
        id: string;
        number: string;
        notes?: string;
        totalAmount: number;
        currency: {
            id: string;
            code: string;
            name: string;
            symbol: string;
            position: string;
            decimalPlaces: number;
        };
        status: string;
        orderDate: Date;
        deliveryDate?: Date;
        createdAt: Date;
        updatedAt: Date;
        lines: {
            id: string;
            quantity: number;
            unitPrice: number;
            totalPrice: number;
            finishedProduct: { id: string; name: string; code: string };
        }[];
    }
    Index

    Properties

    id: string
    number: string
    notes?: string
    totalAmount: number
    currency: {
        id: string;
        code: string;
        name: string;
        symbol: string;
        position: string;
        decimalPlaces: number;
    }
    status: string
    orderDate: Date
    deliveryDate?: Date
    createdAt: Date
    updatedAt: Date
    lines: {
        id: string;
        quantity: number;
        unitPrice: number;
        totalPrice: number;
        finishedProduct: { id: string; name: string; code: string };
    }[]