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
2022-02-09 16:35:37 +01:00

16 lines
No EOL
305 B
TypeScript

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;
}>;
}