UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 660 B
import { LicenseTypeEnum } from './LicenseTypeEnum'; /** Office licence */ export interface OfficeLicence { /** License unique identifier */ id: number; /** License's type, indicates if the licence is standalone or an addon */ licenceType: LicenseTypeEnum; /** Maximum purchasable license */ limit?: number; /** License name */ name: string; /** Whether or not it is possible to add new seats on subscriptions of this licence type */ newSeatsAllowed: boolean; /** Whether or not this licence type is allowed for new subscriptions */ newSubscriptionsAllowed: boolean; } //# sourceMappingURL=OfficeLicence.d.ts.map