/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface License */ export interface License { /** * * @type {string} * @memberof License */ name: string; /** * * @type {string} * @memberof License */ product: string; /** * * @type {string} * @memberof License */ serial: string | null; /** * * @type {string} * @memberof License */ partner: string | null; /** * * @type {string} * @memberof License */ hardware?: string; /** * * @type {string} * @memberof License */ hardwareKey?: string; /** * * @type {Date} * @memberof License */ expiry: Date | null; /** * * @type {{ [key: string]: boolean | undefined; }} * @memberof License */ components: { [key: string]: boolean | undefined; }; /** * * @type {{ [key: string]: Date | undefined; }} * @memberof License */ componentsExpiry: { [key: string]: Date | undefined; }; /** * * @type {{ [key: string]: boolean | undefined; }} * @memberof License */ componentsEnabled: { [key: string]: boolean | undefined; }; /** * * @type {number} * @memberof License */ rdcSlots: number; /** * * @type {number} * @memberof License */ users: number; /** * * @type {number} * @memberof License */ thirdPartyCapacity: number | null; } export declare function LicenseFromJSON(json: any): License; export declare function LicenseFromJSONTyped(json: any, ignoreDiscriminator: boolean): License; export declare function LicenseToJSON(value?: License | null): any;