/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CompanyDto } from './CompanyDto'; import type { PermissionBaseDto } from './PermissionBaseDto'; export type UserTokenDto = { id?: number; login?: string | null; name?: string | null; surname?: string | null; patronymic?: string | null; email?: string | null; phone?: string | null; position?: string | null; idCompany?: number | null; company?: CompanyDto; roleNames?: Array | null; permissions?: Array | null; token?: string | null; }