/**
 * VRt.Studio [ST]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { TracedataStudio } from './tracedata';
import { SchemaErrorStudio } from './schemaError';
import { EntityWarningStudio } from './entityWarning';
import { EntityErrorStudio } from './entityError';
/**
 * 400 Error details.
 */
export interface Custom400WithErrorsAndWarningsStudio {
    [key: string]: any | any;
    tracedata: TracedataStudio;
    /**
     * Error message.
     */
    message?: string | null;
    /**
     * List of syntax errors - data does not match the schema.
     */
    schema_errors?: Array<SchemaErrorStudio>;
    /**
     * List with fatal errors.
     */
    logical_errors?: Array<EntityErrorStudio>;
    /**
     * Warning list.
     */
    warnings?: Array<EntityWarningStudio>;
}
