mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 05:13:17 +00:00
28 lines
787 B
TypeScript
28 lines
787 B
TypeScript
import { PaymentMethodType } from "../../enums/paymentMethodType";
|
|
import { PlanType } from "../../enums/planType";
|
|
|
|
import { OrganizationKeysRequest } from "./organizationKeysRequest";
|
|
|
|
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;
|
|
}
|