@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
26 lines (23 loc) • 642 B
text/typescript
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { Links } from './Links';
export type EntityModelLineaFactura = {
numeroLinea?: number;
codigoServicio?: string;
descripcion?: string;
cantidad?: number;
precioUnitario?: number;
descuento?: number;
importeBruto?: number;
importeDescuento?: number;
baseImponible?: number;
tipoIva?: number;
importeIva?: number;
totalLinea?: number;
tipoLinea?: 'SERVICIO' | 'PRODUCTO' | 'DESCUENTO' | 'RECARGO';
loteProducto?: string;
fechaCaducidad?: string;
_links?: Links;
};