/* tslint:disable */
/* eslint-disable */
/**
* TeamCity REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2018.1 (current)
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { LicenseKeys } from './license-keys';
/**
* Represents license state details (available build configurations, agents, etc.).
* @export
* @interface LicensingData
*/
export interface LicensingData {
/**
*
* @type {boolean}
* @memberof LicensingData
*/
licenseUseExceeded?: boolean;
/**
*
* @type {number}
* @memberof LicensingData
*/
maxAgents?: number;
/**
*
* @type {boolean}
* @memberof LicensingData
*/
unlimitedAgents?: boolean;
/**
*
* @type {number}
* @memberof LicensingData
*/
maxBuildTypes?: number;
/**
*
* @type {boolean}
* @memberof LicensingData
*/
unlimitedBuildTypes?: boolean;
/**
*
* @type {number}
* @memberof LicensingData
*/
buildTypesLeft?: number;
/**
*
* @type {number}
* @memberof LicensingData
*/
maxPipelines?: number;
/**
*
* @type {boolean}
* @memberof LicensingData
*/
unlimitedPipelines?: boolean;
/**
*
* @type {number}
* @memberof LicensingData
*/
pipelinesLeft?: number;
/**
*
* @type {string}
* @memberof LicensingData
*/
serverLicenseType?: LicensingDataServerLicenseTypeEnum;
/**
*
* @type {string}
* @memberof LicensingData
*/
serverEffectiveReleaseDate?: string;
/**
*
* @type {number}
* @memberof LicensingData
*/
agentsLeft?: number;
/**
*
* @type {LicenseKeys}
* @memberof LicensingData
*/
licenseKeys?: LicenseKeys;
}
export const LicensingDataServerLicenseTypeEnum = {
Evaluation: 'evaluation',
Eap: 'eap',
OpenSource: 'open_source',
Commercial: 'commercial',
Enterprise: 'enterprise',
Professional: 'professional',
} as const;
export type LicensingDataServerLicenseTypeEnum =
(typeof LicensingDataServerLicenseTypeEnum)[keyof typeof LicensingDataServerLicenseTypeEnum];