//#region src/model/AssertionResult.d.ts
type IAssertionResult = {
operator: string;
expected: any;
actual: any;
isSuccess: boolean;
taskId: string;
description: string;
errorMessage: string;
};
/**
* @typedef {Object} IAssertionResult
* @property {String} operator
* @property {Object} expected
* @property {Object} actual
* @property {Boolean} isSuccess
* @property {String} taskId
* @property {String} description
* @property {String} errorMessage
*/
/**
* The AssertionResult model module.
* @module model/AssertionResult
* @type {IAssertionResult}
*/
declare class AssertionResult {
/**
* 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, operator: any, expected: any, actual: any, isSuccess: any): void;
/**
* Constructs a AssertionResult 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/AssertionResult} obj Optional instance to populate.
* @return {module:model/AssertionResult} The populated AssertionResult instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to AssertionResult.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to AssertionResult.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new AssertionResult.
* @alias module:model/AssertionResult
* @param {String} operator -
* @param {Object} expected -
* @param {Object} actual -
* @param {Boolean} isSuccess -
*/
constructor(operator: string, expected: any, actual: any, isSuccess: boolean);
operator: string;
expected: any;
actual: any;
isSuccess: boolean;
taskId: string;
description: string;
errorMessage: string;
}
declare namespace AssertionResult {
let RequiredProperties: string[];
}
//#endregion
export { IAssertionResult, AssertionResult as default };