1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 02:33:46 +00:00

list org-members command

This commit is contained in:
Kyle Spearrin
2019-10-07 09:58:19 -04:00
parent 1de6c2884b
commit e781de9f34
4 changed files with 71 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
import { BaseResponse } from 'jslib/cli/models/response/baseResponse';
import { OrganizationUserStatusType } from 'jslib/enums/organizationUserStatusType';
import { OrganizationUserType } from 'jslib/enums/organizationUserType';
export class OrganizationUserResponse implements BaseResponse {
object: string;
id: string;
email: string;
name: string;
status: OrganizationUserStatusType;
type: OrganizationUserType;
twoFactorEnabled: boolean;
constructor() {
this.object = 'org-member';
}
}