/**
* The UpdatedTargetEntityResult model module.
* @module Ntnx/UpdatedTargetEntityResult
* @version 4.3.1
* @class UpdatedTargetEntityResult
*
* @param { string } message A message explaining the reason for skipping, modifying, or adding the entity during recommendation computation.
*/
export default class UpdatedTargetEntityResult {
/**
* Constructs a UpdatedTargetEntityResult 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:Ntnx/UpdatedTargetEntityResult} obj Optional instance to populate.
* @param callFromChild {Boolean} Flag to recognise calling instance
* @return {module:Ntnx/UpdatedTargetEntityResult} The populated UpdatedTargetEntityResult instance.
*/
static constructFromObject(data: any, obj?: any, callFromChild?: boolean): any;
/**
* Converts a given snake_case string to camelCase.
* @param {string} snakeStr - The input string in snake_case format.
* @returns {string} - The converted string in camelCase format.
*/
static snakeToCamel(snakeStr: string): string;
/**
* Constructs a new UpdatedTargetEntityResult.
* Result entry for a target entity in the recommendation computation, including a message explaining why the entity was skipped, modified, or added.
* @alias module:Ntnx/UpdatedTargetEntityResult
*
* @param { string } message A message explaining the reason for skipping, modifying, or adding the entity during recommendation computation.
*/
constructor(message: string);
message: string;
$objectType: string;
/** @type {object} */
$reserved: object;
/** @type {object} */
$unknownFields: object;
/**
* @return {UpdatedTargetEntity}
*/
getTargetEntity(): UpdatedTargetEntity;
/**
* @param {UpdatedTargetEntity} targetEntity
*/
setTargetEntity(targetEntity: UpdatedTargetEntity): void;
targetEntity: UpdatedTargetEntity;
/**
* Returns A message explaining the reason for skipping, modifying, or adding the entity during recommendation computation.
* @return {string}
*/
getMessage(): string;
/**
* Sets A message explaining the reason for skipping, modifying, or adding the entity during recommendation computation.
* @param {string} message A message explaining the reason for skipping, modifying, or adding the entity during recommendation computation.
*/
setMessage(message: string): void;
get$Reserved(): any;
get$ObjectType(): string;
get$UnknownFields(): any;
toJson(forMutation: any): any;
validate(scope: any, properties: any, ...args: any[]): Promise;
validateProperty(scope: any, property: any): ValidationError;
#private;
}
import UpdatedTargetEntity from "./UpdatedTargetEntity";
import ValidationError from "../../../validation/ValidationError";