//#region src/model/SLAType.d.ts /** * Enum SLAType * @type {{ * "MAX_DURATION": "MAX_DURATION","EXECUTION_ASSERTION": "EXECUTION_ASSERTION", * }} */ declare const SLATypeStatic: { "MAX_DURATION": "MAX_DURATION"; "EXECUTION_ASSERTION": "EXECUTION_ASSERTION"; }; /** * Enum class SLAType. * @enum {} * @readonly */ declare class SLAType { /** * Returns a SLAType enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/SLAType} The enum SLAType value. */ static constructFromObject(object: any): any; /** * value: "MAX_DURATION" * @const */ MAX_DURATION: string; /** * value: "EXECUTION_ASSERTION" * @const */ EXECUTION_ASSERTION: string; } /** * * */ type SLAType = any; //#endregion export { SLAType, SLAType as default, SLATypeStatic };