@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
24 lines (23 loc) • 760 B
TypeScript
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;
};