UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

37 lines (36 loc) 1.16 kB
/** * VRt.Agro [AG] * * 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 { TracedataAgro } from './tracedata'; import { SchemaErrorAgro } from './schemaError'; import { EntityErrorAgro } from './entityError'; import { EntityWarningAgro } from './entityWarning'; /** * 400 Error details. */ export interface Custom400WithErrorsAndWarningsAgro { [key: string]: any | any; tracedata: TracedataAgro; /** * Error message. */ message?: string | null; /** * List of syntax errors - data does not match the schema. */ schema_errors?: Array<SchemaErrorAgro>; /** * A list of errors in the source data that make it impossible to start the calculation. */ logical_errors?: Array<EntityErrorAgro>; /** * List of warnings. Depending on the flag `calculation_settings.treat_warnings_as_errors` - triggered checks are interpreted as errors or result in the removal of incorrect data from the calculation. */ warnings?: Array<EntityWarningAgro>; }