mirror of
https://github.com/bitwarden/browser
synced 2025-12-25 20:53:22 +00:00
15 lines
417 B
TypeScript
15 lines
417 B
TypeScript
import { PlanType } from '../../enums/planType';
|
|
|
|
import { OrganizationKeysRequest } from './organizationKeysRequest';
|
|
|
|
export class OrganizationUpgradeRequest {
|
|
businessName: string;
|
|
planType: PlanType;
|
|
additionalSeats: number;
|
|
additionalStorageGb: number;
|
|
premiumAccessAddon: boolean;
|
|
billingAddressCountry: string;
|
|
billingAddressPostalCode: string;
|
|
keys: OrganizationKeysRequest;
|
|
}
|