mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import { GroupEntry } from '../groupEntry';
|
|
|
|
export class GroupResponse {
|
|
externalId: string;
|
|
displayName: string;
|
|
userIds: string[];
|
|
|
|
constructor(g: GroupEntry) {
|
|
this.externalId = g.externalId;
|
|
this.displayName = g.displayName;
|
|
this.userIds = Array.from(g.userMemberExternalIds);
|
|
}
|
|
}
|