//#region src/model/SLALabels.d.ts /** * The SLALabels model module. * @module model/SLALabels */ declare class SLALabels { /** * Constructs a SLALabels from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/SLALabels} obj Optional instance to populate. * @return {module:model/SLALabels} The populated SLALabels instance. */ static constructFromObject(data: any, obj: any): any; /** * Create an instance of SLALabels from a JSON string. * @param {string} json_string JSON string. * @return {module:model/SLALabels} An instance of SLALabels. */ static fromJSON: (json_string: string) => any; /** * Constructs a new SLALabels. * @alias module:model/SLALabels * @param {(module:model/MapObjectObject|module:model/[String])} instance The actual instance to initialize SLALabels. */ constructor(instance?: any); actualInstance: any; /** * Gets the actual instance, which can be MapObjectObject, [String]. * @return {(module:model/MapObjectObject|module:model/[String])} The actual instance. */ getActualInstance(): (module: model) => any; /** * Sets the actual instance, which can be MapObjectObject, [String]. * @param {(module:model/MapObjectObject|module:model/[String])} obj The actual instance. */ setActualInstance(obj: any): void; /** * Returns the JSON representation of the actual instance. * @return {string} */ toJSON: () => string; empty: any; } declare namespace SLALabels { let OneOf: string[]; } //#endregion export { SLALabels as default };