//#region src/model/AbstractTriggerForExecution.d.ts
type IAbstractTriggerForExecution = {
id: string;
type: string;
/**
* - Defines the version of the plugin to use. The version must follow the Semantic Versioning (SemVer) specification: - A single-digit MAJOR version (e.g., `1`). - A MAJOR.MINOR version (e.g., `1.1`). - A MAJOR.MINOR.PATCH version, optionally with any qualifier (e.g., `1.1.2`, `1.1.0-SNAPSHOT`).
*/
version: string;
};
/**
* @typedef {Object} IAbstractTriggerForExecution
* @property {String} id
* @property {String} type
* @property {String} version - Defines the version of the plugin to use. The version must follow the Semantic Versioning (SemVer) specification: - A single-digit MAJOR version (e.g., `1`). - A MAJOR.MINOR version (e.g., `1.1`). - A MAJOR.MINOR.PATCH version, optionally with any qualifier (e.g., `1.1.2`, `1.1.0-SNAPSHOT`).
*/
/**
* The AbstractTriggerForExecution model module.
* @module model/AbstractTriggerForExecution
* @type {IAbstractTriggerForExecution}
*/
declare class AbstractTriggerForExecution {
/**
* 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, id: any, type: any): void;
/**
* Constructs a AbstractTriggerForExecution 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/AbstractTriggerForExecution} obj Optional instance to populate.
* @return {module:model/AbstractTriggerForExecution} The populated AbstractTriggerForExecution instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to AbstractTriggerForExecution.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to AbstractTriggerForExecution.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new AbstractTriggerForExecution.
* @alias module:model/AbstractTriggerForExecution
* @param {String} id -
* @param {String} type -
*/
constructor(id: string, type: string);
id: string;
type: string;
version: string;
}
declare namespace AbstractTriggerForExecution {
let RequiredProperties: string[];
}
//#endregion
export { IAbstractTriggerForExecution, AbstractTriggerForExecution as default };