2021-05-10 14:51:51 +01:00
|
|
|
export class UserForm {
|
|
|
|
|
username: string;
|
|
|
|
|
password: string;
|
|
|
|
|
domainName: string;
|
2022-03-28 15:46:07 +01:00
|
|
|
BasicAuthKey: string;
|
2021-05-10 14:51:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-03-22 15:31:01 +01:00
|
|
|
export class calendarInterface {
|
|
|
|
|
CalendarId: string
|
|
|
|
|
CalendarName: "Oficial" | "Pessoal";
|
|
|
|
|
CalendarRoleId: string;
|
|
|
|
|
Id: number;
|
|
|
|
|
OwnerUserId: any
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-27 13:39:52 +01:00
|
|
|
export class UserSession {
|
|
|
|
|
UserId: number;
|
|
|
|
|
Authorization: string;
|
|
|
|
|
Email: string
|
|
|
|
|
FullName: string
|
|
|
|
|
RoleDescription: string
|
|
|
|
|
RoleID: number
|
2022-01-10 18:52:21 +01:00
|
|
|
Password: string
|
2022-02-16 15:52:59 +01:00
|
|
|
RochetChatUserId: string
|
2023-09-06 21:23:21 +01:00
|
|
|
Profile: 'PR' | 'MDGPR' | 'Consultant' | 'SGGPR' | 'Unknown' ;
|
2021-08-27 13:39:52 +01:00
|
|
|
LoginPreference: 'None' | 'Password' | 'Pin' | null;
|
|
|
|
|
PIN: string
|
2021-08-27 17:11:05 +01:00
|
|
|
Inactivity: boolean
|
2022-03-28 15:46:07 +01:00
|
|
|
UrlBeforeInactivity: string;
|
|
|
|
|
UserPermissions: any;
|
2023-09-14 11:58:24 +01:00
|
|
|
UserPhoto: string;
|
2023-11-29 12:17:52 +01:00
|
|
|
RefreshToken: string
|
2023-05-18 17:40:52 +01:00
|
|
|
}
|