//#region src/model/Assertion.d.ts type IAssertion = { value: any; taskId: string; errorMessage: string; description: string; endsWith: string; startsWith: string; contains: string; equalTo: any; notEqualTo: any; greaterThan: any; greaterThanOrEqualTo: any; lessThan: any; lessThanOrEqualTo: any; in: any; notIn: any; isNull: any; isNotNull: any; }; /** * @typedef {Object} IAssertion * @property {Object} value * @property {String} taskId * @property {String} errorMessage * @property {String} description * @property {String} endsWith * @property {String} startsWith * @property {String} contains * @property {Object} equalTo * @property {Object} notEqualTo * @property {Object} greaterThan * @property {Object} greaterThanOrEqualTo * @property {Object} lessThan * @property {Object} lessThanOrEqualTo * @property {Object} in * @property {Object} notIn * @property {Object} isNull * @property {Object} isNotNull */ /** * The Assertion model module. * @module model/Assertion * @type {IAssertion} */ declare class Assertion { /** * 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, value: any): void; /** * Constructs a Assertion 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/Assertion} obj Optional instance to populate. * @return {module:model/Assertion} The populated Assertion instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Assertion. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Assertion. */ static validateJSON(data: any): boolean; /** * Constructs a new Assertion. * @alias module:model/Assertion * @param {Object} value - */ constructor(value: any); value: any; taskId: string; errorMessage: string; description: string; endsWith: string; startsWith: string; contains: string; equalTo: any; notEqualTo: any; greaterThan: any; greaterThanOrEqualTo: any; lessThan: any; lessThanOrEqualTo: any; in: any; notIn: any; isNull: any; isNotNull: any; } declare namespace Assertion { let RequiredProperties: string[]; } //#endregion export { IAssertion, Assertion as default };