UNPKG

@thunderfat/backend-sdk

Version:

TypeScript SDK for ThunderFat Nutrition Management API

27 lines (26 loc) 688 B
import type { GrantedAuthority } from './GrantedAuthority'; import type { Links } from './Links'; export type EntityModelPaciente = { email: string; psw?: string; createtime?: string; enabled?: boolean; nombre?: string; apellidos?: string; fechanacimiento?: string; direccion?: string; localidad?: string; codigopostal?: string; provincia?: string; dni?: string; altura?: number; telefono?: string; sexo?: string; password?: string; username?: string; authorities?: Array<GrantedAuthority>; accountNonExpired?: boolean; credentialsNonExpired?: boolean; accountNonLocked?: boolean; _links?: Links; };