//#region src/model/Label.d.ts
type ILabel = {
key: string;
value: string;
};
/**
* @typedef {Object} ILabel
* @property {String} key
* @property {String} value
*/
/**
* The Label model module.
* @module model/Label
* @type {ILabel}
*/
declare class Label {
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
static initialize(obj: any, key: any, value: any): void;
/**
* Constructs a Label 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/Label} obj Optional instance to populate.
* @return {module:model/Label} The populated Label instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to Label.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to Label.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new Label.
* A key/value pair that can be attached to a Flow or Execution. Labels are often used to organize and categorize objects.
* @alias module:model/Label
* @param {String} key -
* @param {String} value -
*/
constructor(key: string, value: string);
key: string;
value: string;
}
declare namespace Label {
let RequiredProperties: string[];
}
//#endregion
export { ILabel, Label as default };