@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
16 lines (15 loc) • 432 B
TypeScript
import type { GrantedAuthority } from './GrantedAuthority';
import type { Links } from './Links';
export type EntityModelUsuario = {
email: string;
psw?: string;
createtime?: string;
enabled?: boolean;
password?: string;
username?: string;
authorities?: Array<GrantedAuthority>;
accountNonExpired?: boolean;
credentialsNonExpired?: boolean;
accountNonLocked?: boolean;
_links?: Links;
};