1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

org create apis

This commit is contained in:
Kyle Spearrin
2018-07-02 15:36:32 -04:00
parent 7ba04c919e
commit 0033b92a2d
4 changed files with 77 additions and 0 deletions

View 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;
}