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:
18
src/models/response/organizationUserResponse.ts
Normal file
18
src/models/response/organizationUserResponse.ts
Normal 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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user