This repository has been archived on 2024-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
rocketchat-scim/scim.ts

16 lines
305 B
TypeScript
Raw Normal View History

2022-02-09 15:35:37 +00:00
interface ISCIMUser {
id: string;
externalId: string;
userName: string;
name?: {
familyName: string;
givenName: string;
};
displayName: string;
active: boolean;
emails: Array<{
value: string;
type: string;
primary: boolean;
}>;
}