@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
30 lines (27 loc) • 855 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 EntityModelFactura = {
numeroFactura?: string;
fechaEmision?: string;
fechaVencimiento?: string;
baseImponible?: number;
tipoIva?: number;
importeIva?: number;
total?: number;
estado?: 'BORRADOR' | 'PENDIENTE' | 'ENVIADA' | 'PAGADA' | 'VENCIDA' | 'ANULADA' | 'REGISTRADA_VERIFACTU' | 'ERROR_VERIFACTU';
numeroRegistroVerifactu?: string;
hashVerifactu?: string;
fechaRegistroVerifactu?: string;
requiereFacturae?: boolean;
rutaFacturaeXml?: string;
certificadoUtilizado?: string;
observaciones?: string;
fechaCreacion?: string;
fechaModificacion?: string;
usuarioCreacion?: string;
usuarioModificacion?: string;
_links?: Links;
};