1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

new collection user api endpoint

This commit is contained in:
Kyle Spearrin
2018-10-17 17:31:13 -04:00
parent 0d8e09b3f1
commit d49182597e
3 changed files with 5 additions and 27 deletions

View File

@@ -1,22 +0,0 @@
import { OrganizationUserStatusType } from '../../enums/organizationUserStatusType';
import { OrganizationUserType } from '../../enums/organizationUserType';
export class CollectionUserResponse {
organizationUserId: string;
accessAll: boolean;
name: string;
email: string;
type: OrganizationUserType;
status: OrganizationUserStatusType;
readOnly: boolean;
constructor(response: any) {
this.organizationUserId = response.OrganizationUserId;
this.accessAll = response.AccessAll;
this.name = response.Name;
this.email = response.Email;
this.type = response.Type;
this.status = response.Status;
this.readOnly = response.ReadOnly;
}
}