/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CompanyDto } from './CompanyDto'; import type { PermissionDto } from './PermissionDto'; 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; idState?: number | null; company?: CompanyDto; roleNames?: Array | null; permissions?: Array | null; token?: string | null; }