/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { SchemaErrorUniversal } from './schemaError'; import { TracedataUniversal } from './tracedata'; import { EntityErrorUniversal } from './entityError'; import { EntityWarningUniversal } from './entityWarning'; /** * Error 400 details. */ export interface Custom400WithErrorsAndWarningsUniversal { [key: string]: any | any; tracedata: TracedataUniversal; /** * Error message. */ message?: string | null; /** * List of syntax errors - data does not match the schema. */ schema_errors?: Array; /** * List with fatal errors. */ logical_errors?: Array; /** * Warning list. */ warnings?: Array; }