ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface SalesOfferLineResponse {
        id: string;
        salesOfferId: string;
        finishedProductId: string | null;
        description: string;
        quantity: number;
        unitPrice: number;
        totalPrice: number;
        taxId: string | null;
        taxRate: number;
        taxAmount: number;
        notes: string | null;
        sequence: number;
        createdAt: string | Date;
        updatedAt: string | Date;
        finishedProduct?:
            | {
                id: string;
                code: string;
                name: string;
                description: string
                | null;
            }
            | null;
        unitOfMeasure?: | {
            id: string;
            code: string;
            name: string;
            symbol: string
            | null;
        }
        | null;
        tax?: { id: string; name: string; code: string; rate: number }
        | null;
    }
    Index

    Properties

    id: string
    salesOfferId: string
    finishedProductId: string | null
    description: string
    quantity: number
    unitPrice: number
    totalPrice: number
    taxId: string | null
    taxRate: number
    taxAmount: number
    notes: string | null
    sequence: number
    createdAt: string | Date
    updatedAt: string | Date
    finishedProduct?:
        | { id: string; code: string; name: string; description: string
        | null }
        | null
    unitOfMeasure?:
        | { id: string; code: string; name: string; symbol: string
        | null }
        | null
    tax?: { id: string; name: string; code: string; rate: number } | null