nope/modules/xetics-lean-connector/generated/models/User.ts

43 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-08-26 18:47:05 +00:00
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { Equipment } from './Equipment';
import type { IdedModel } from './IdedModel';
import type { NamedModel } from './NamedModel';
import type { ProcessTarget } from './ProcessTarget';
export type User = {
abbreviation?: string;
activeProcessTargets?: Array<ProcessTarget>;
admin?: boolean;
archivedTime?: string;
assignedEquipments?: Array<NamedModel>;
autoId?: string;
changePassword?: boolean;
deletionTime?: string;
email?: string;
extId?: string;
fixedEquipment?: Equipment;
foreName?: string;
id?: number;
image?: IdedModel;
kpi?: boolean;
login?: string;
masterdata?: boolean;
name?: string;
operator?: boolean;
phone?: string;
phoneExtension?: number;
planner?: boolean;
prefix?: string;
preparer?: boolean;
processTargets?: Array<NamedModel>;
roles?: Array<NamedModel>;
shifts?: Array<IdedModel>;
showable?: boolean;
smartTagType?: string;
tagId?: string;
tracking?: boolean;
uiFriendlyName?: string;
}