mirror of
https://github.com/bitwarden/jslib
synced 2026-01-07 02:53:13 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import { PlanType } from '../../enums/planType';
|
|
|
|
export class OrganizationUpgradeRequest {
|
|
businessName: string;
|
|
planType: PlanType;
|
|
additionalSeats: number;
|
|
additionalStorageGb: number;
|
|
premiumAccessAddon: boolean;
|
|
}
|