mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
* [EC-489] chore: remove obsolete `identifier` field * [EC-489] chore: remove identifier from org response
59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
import { PlanType } from "../../enums/planType";
|
|
|
|
import { BaseResponse } from "./base.response";
|
|
import { PlanResponse } from "./plan.response";
|
|
|
|
export class OrganizationResponse extends BaseResponse {
|
|
id: string;
|
|
name: string;
|
|
businessName: string;
|
|
businessAddress1: string;
|
|
businessAddress2: string;
|
|
businessAddress3: string;
|
|
businessCountry: string;
|
|
businessTaxNumber: string;
|
|
billingEmail: string;
|
|
plan: PlanResponse;
|
|
planType: PlanType;
|
|
seats: number;
|
|
maxAutoscaleSeats: number;
|
|
maxCollections: number;
|
|
maxStorageGb: number;
|
|
useGroups: boolean;
|
|
useDirectory: boolean;
|
|
useEvents: boolean;
|
|
useTotp: boolean;
|
|
use2fa: boolean;
|
|
useApi: boolean;
|
|
useResetPassword: boolean;
|
|
hasPublicAndPrivateKeys: boolean;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.name = this.getResponseProperty("Name");
|
|
this.businessName = this.getResponseProperty("BusinessName");
|
|
this.businessAddress1 = this.getResponseProperty("BusinessAddress1");
|
|
this.businessAddress2 = this.getResponseProperty("BusinessAddress2");
|
|
this.businessAddress3 = this.getResponseProperty("BusinessAddress3");
|
|
this.businessCountry = this.getResponseProperty("BusinessCountry");
|
|
this.businessTaxNumber = this.getResponseProperty("BusinessTaxNumber");
|
|
this.billingEmail = this.getResponseProperty("BillingEmail");
|
|
const plan = this.getResponseProperty("Plan");
|
|
this.plan = plan == null ? null : new PlanResponse(plan);
|
|
this.planType = this.getResponseProperty("PlanType");
|
|
this.seats = this.getResponseProperty("Seats");
|
|
this.maxAutoscaleSeats = this.getResponseProperty("MaxAutoscaleSeats");
|
|
this.maxCollections = this.getResponseProperty("MaxCollections");
|
|
this.maxStorageGb = this.getResponseProperty("MaxStorageGb");
|
|
this.useGroups = this.getResponseProperty("UseGroups");
|
|
this.useDirectory = this.getResponseProperty("UseDirectory");
|
|
this.useEvents = this.getResponseProperty("UseEvents");
|
|
this.useTotp = this.getResponseProperty("UseTotp");
|
|
this.use2fa = this.getResponseProperty("Use2fa");
|
|
this.useApi = this.getResponseProperty("UseApi");
|
|
this.useResetPassword = this.getResponseProperty("UseResetPassword");
|
|
this.hasPublicAndPrivateKeys = this.getResponseProperty("HasPublicAndPrivateKeys");
|
|
}
|
|
}
|