/** * PyroFetes * * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Severity } from './severity'; /** * Defines a validation failure */ export interface ValidationFailure { /** * The name of the property. */ propertyName?: string | null; /** * The error message */ errorMessage?: string | null; /** * The property value that caused the failure. */ attemptedValue?: any | null; /** * Custom state associated with the failure. */ customState?: any | null; severity?: Severity; /** * Gets or sets the error code. */ errorCode?: string | null; /** * Gets or sets the formatted message placeholder values. */ formattedMessagePlaceholderValues?: { [key: string]: any; } | null; } export namespace ValidationFailure { }