Interface Product

interface Product {
    accounting: InvoiceRowAccountingDto;
    code?: string;
    id: string;
    name: LanguageString;
    price: number;
    unit: ProductUnitDto;
    vat: InvoiceRowVatDto;
}

Properties

code?: string
id: string
price: number