/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Results of a grid row against a JSON schema * @export * @interface ResultValidationResults */ export interface ResultValidationResults { /** * Will be 'true' if the row is valid according to the JSON schema. Will be 'false' when the row is invalid. * @type {boolean} * @memberof ResultValidationResults */ isValid?: boolean; /** * If the object is not valid according to the schema, a simple one line error message will be provided. * @type {string} * @memberof ResultValidationResults */ validationErrorMessage?: string; /** * If the object is not valid according to the schema, a the flat list of error messages will be provided with one error message per sub-schema. Included only if includeValidationMessages was set to true in the query. Otherwise, this array is omitted to optimize performance. * @type {Array} * @memberof ResultValidationResults */ allValidationMessages?: Array; } /** * Check if a given object implements the ResultValidationResults interface. */ export declare function instanceOfResultValidationResults(value: object): value is ResultValidationResults; export declare function ResultValidationResultsFromJSON(json: any): ResultValidationResults; export declare function ResultValidationResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResultValidationResults; export declare function ResultValidationResultsToJSON(json: any): ResultValidationResults; export declare function ResultValidationResultsToJSONTyped(value?: ResultValidationResults | null, ignoreDiscriminator?: boolean): any;