ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface OrderLineResponse {
        id: string;
        salesOrderId: string;
        finishedProductId?: string | null;
        description: string | null;
        quantity: number;
        unitPrice: number;
        totalPrice: number;
        taxId?: string | null;
        taxRate: number;
        taxAmount: number;
        deliveredQuantity: number;
        remainingQuantity: number;
        notes?: string | null;
        createdAt: string;
        updatedAt: string;
        salesOrder: {
            id: string;
            number: string;
            orderDate: string;
            status: string;
            client: { id: string; name: string };
            currency?: { code: string; symbol: string } | null;
        };
        finishedProduct?: { id: string; name: string; reference: string }
        | null;
        tax?: { id: string; name: string; rate: number } | null;
    }
    Index

    Properties

    id: string
    salesOrderId: string
    finishedProductId?: string | null
    description: string | null
    quantity: number
    unitPrice: number
    totalPrice: number
    taxId?: string | null
    taxRate: number
    taxAmount: number
    deliveredQuantity: number
    remainingQuantity: number
    notes?: string | null
    createdAt: string
    updatedAt: string
    salesOrder: {
        id: string;
        number: string;
        orderDate: string;
        status: string;
        client: { id: string; name: string };
        currency?: { code: string; symbol: string } | null;
    }
    finishedProduct?: { id: string; name: string; reference: string } | null
    tax?: { id: string; name: string; rate: number } | null