mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
import { PlanType } from '../../enums/planType';
|
|
|
|
export class OrganizationCreateRequest {
|
|
name: string;
|
|
businessName: string;
|
|
billingEmail: string;
|
|
planType: PlanType;
|
|
key: string;
|
|
paymentToken: string;
|
|
additionalSeats: number;
|
|
additionalStorageGb: number;
|
|
premiumAccessAddon: boolean;
|
|
collectionName: string;
|
|
country: string;
|
|
}
|