mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
org create apis
This commit is contained in:
14
src/models/request/organizationCreateRequest.ts
Normal file
14
src/models/request/organizationCreateRequest.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { PlanType } from '../../enums/planType';
|
||||
|
||||
export class OrganizationCreateRequest {
|
||||
name: string;
|
||||
businessName: string;
|
||||
billingEmail: string;
|
||||
planType: PlanType;
|
||||
key: string;
|
||||
paymentToken: string;
|
||||
additionalSeats: number;
|
||||
additionalStorageGb: number;
|
||||
collectionName: string;
|
||||
country: string;
|
||||
}
|
||||
Reference in New Issue
Block a user