1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00
Files
browser/src/models/request/organizationCreateRequest.ts
2020-06-12 19:29:52 -04:00

24 lines
691 B
TypeScript

import { PaymentMethodType } from '../../enums/paymentMethodType';
import { PlanType } from '../../enums/planType';
export class OrganizationCreateRequest {
name: string;
businessName: string;
billingEmail: string;
planType: PlanType;
key: string;
paymentMethodType: PaymentMethodType;
paymentToken: string;
additionalSeats: number;
additionalStorageGb: number;
premiumAccessAddon: boolean;
collectionName: string;
taxIdNumber: string;
billingAddressLine1: string;
billingAddressLine2: string;
billingAddressCity: string;
billingAddressState: string;
billingAddressPostalCode: string;
billingAddressCountry: string;
}