asb_cloud_front/src/services/api/models/UserTokenDto.ts

19 lines
463 B
TypeScript
Raw Normal View History

2021-04-02 17:22:34 +05:00
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type UserTokenDto = {
login?: string | null;
name?: string | null;
surname?: string | null;
patronymic?: string | null;
email?: string | null;
phone?: string | null;
position?: string | null;
2021-04-02 17:22:34 +05:00
id?: number;
2021-07-22 10:16:55 +05:00
companyName?: string | null;
2021-12-06 14:19:55 +05:00
roleNames?: Array<string> | null;
permissions?: Record<string, number> | null;
2021-04-02 17:22:34 +05:00
token?: string | null;
2021-10-12 10:39:56 +05:00
}