2021-04-02 17:22:34 +05:00
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
2021-12-13 10:19:07 +05:00
|
|
|
import type { CompanyDto } from './CompanyDto';
|
2021-12-27 15:18:35 +05:00
|
|
|
import type { PermissionDto } from './PermissionDto';
|
2021-12-13 10:19:07 +05:00
|
|
|
|
2021-04-02 17:22:34 +05:00
|
|
|
export type UserTokenDto = {
|
2021-12-13 10:19:07 +05:00
|
|
|
id?: number;
|
2021-04-02 17:22:34 +05:00
|
|
|
login?: string | null;
|
|
|
|
name?: string | null;
|
|
|
|
surname?: string | null;
|
|
|
|
patronymic?: string | null;
|
2021-10-20 14:32:51 +05:00
|
|
|
email?: string | null;
|
|
|
|
phone?: string | null;
|
|
|
|
position?: string | null;
|
2021-12-13 10:19:07 +05:00
|
|
|
idCompany?: number | null;
|
2021-12-27 15:18:35 +05:00
|
|
|
idState?: number | null;
|
2021-12-13 10:19:07 +05:00
|
|
|
company?: CompanyDto;
|
2021-12-06 14:19:55 +05:00
|
|
|
roleNames?: Array<string> | null;
|
2021-12-27 15:18:35 +05:00
|
|
|
permissions?: Array<PermissionDto> | null;
|
2021-04-02 17:22:34 +05:00
|
|
|
token?: string | null;
|
2021-10-12 10:39:56 +05:00
|
|
|
}
|