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