wa-chat-server
Version:
Watson Assistant powered chat server
17 lines (16 loc) • 363 B
TypeScript
export interface IUser {
displayName: string;
givenName: string;
jobTitle: string;
mail: string;
mobilePhone: string;
officeLocation: string;
preferredLanguage: string;
surname: string;
country: string;
department: string;
userPrincipalName: string;
id: string;
accessToken: string;
refreshToken: string;
}