@veeroute/lss-packer-angular
Version:
OpenAPI client for @veeroute/lss-packer-angular
37 lines (36 loc) • 1.18 kB
TypeScript
/**
* VRt.Packer [PC]
*
* 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 { SchemaErrorPacker } from './schemaError';
import { TracedataPacker } from './tracedata';
import { EntityWarningPacker } from './entityWarning';
import { EntityErrorPacker } from './entityError';
/**
* Error details.
*/
export interface Custom400WithErrorsAndWarningsPacker {
[key: string]: any | any;
tracedata: TracedataPacker;
/**
* Error message.
*/
message?: string | null;
/**
* List of syntax errors - data does not match the schema.
*/
schema_errors?: Array<SchemaErrorPacker>;
/**
* A list of errors in the source data that make it impossible to start the calculation.
*/
logical_errors?: Array<EntityErrorPacker>;
/**
* 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<EntityWarningPacker>;
}