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