mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
* refactor: add barrel file for admin-console enums, update references, refs AC-1202 * fix: lint/prettier updates, refs AC-1202 * refactor: add enum suffix, refs AC-1202 * refactor: add barrel file for billing enums, update imports to use it, refs AC-1202 * fix: prettier, refs AC-1202 * refactor: add enum suffix for billing enums, refs AC-1202
27 lines
743 B
TypeScript
27 lines
743 B
TypeScript
import { PaymentMethodType, PlanType } from "../../../billing/enums";
|
|
|
|
import { OrganizationKeysRequest } from "./organization-keys.request";
|
|
|
|
export class OrganizationCreateRequest {
|
|
name: string;
|
|
businessName: string;
|
|
billingEmail: string;
|
|
planType: PlanType;
|
|
key: string;
|
|
keys: OrganizationKeysRequest;
|
|
paymentMethodType: PaymentMethodType;
|
|
paymentToken: string;
|
|
additionalSeats: number;
|
|
maxAutoscaleSeats: number;
|
|
additionalStorageGb: number;
|
|
premiumAccessAddon: boolean;
|
|
collectionName: string;
|
|
taxIdNumber: string;
|
|
billingAddressLine1: string;
|
|
billingAddressLine2: string;
|
|
billingAddressCity: string;
|
|
billingAddressState: string;
|
|
billingAddressPostalCode: string;
|
|
billingAddressCountry: string;
|
|
}
|