@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
32 lines (29 loc) • 985 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 EntityModelProveedor = {
nif?: string;
razonSocial?: string;
nombreComercial?: string;
direccion?: string;
codigoPostal?: string;
poblacion?: string;
provincia?: string;
pais?: string;
telefono?: string;
email?: string;
web?: string;
contactoNombre?: string;
contactoTelefono?: string;
contactoEmail?: string;
tipoProveedor?: 'SUPLEMENTOS_DEPORTIVOS' | 'ALIMENTACION_NATURAL' | 'ROPA_DEPORTIVA' | 'EQUIPAMIENTO_DEPORTIVO' | 'EDITORIAL_LIBROS' | 'TECNOLOGIA_SALUD' | 'COSMETICA_NATURAL' | 'UTENSILIOS_COCINA' | 'MAYORISTA_GENERAL' | 'FABRICANTE_DIRECTO' | 'DISTRIBUIDOR_OFICIAL' | 'OTROS';
condicionesPagoDias?: number;
descuentoVolumen?: number;
observaciones?: string;
activo?: boolean;
fechaAlta?: string;
fechaActualizacion?: string;
_links?: Links;
};