bitwarden-estensione-browser/apps/cli/src/models/response/organizationUserResponse.ts

18 lines
532 B
TypeScript
Raw Normal View History

2021-12-20 18:04:00 +01:00
import { OrganizationUserStatusType } from "jslib-common/enums/organizationUserStatusType";
import { OrganizationUserType } from "jslib-common/enums/organizationUserType";
2022-03-03 18:24:41 +01:00
import { BaseResponse } from "jslib-node/cli/models/response/baseResponse";
2019-10-07 15:58:19 +02:00
export class OrganizationUserResponse implements BaseResponse {
2021-12-20 18:04:00 +01:00
object: string;
id: string;
email: string;
name: string;
status: OrganizationUserStatusType;
type: OrganizationUserType;
twoFactorEnabled: boolean;
2019-10-07 15:58:19 +02:00
2021-12-20 18:04:00 +01:00
constructor() {
this.object = "org-member";
}
2019-10-07 15:58:19 +02:00
}