/**
 * 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 { EntityPathPacker } from './entityPath';
import { EntityErrorTypePacker } from './entityErrorType';
/**
 * Description of the error in the input data.
 */
export interface EntityErrorPacker {
    [key: string]: any | any;
    type: EntityErrorTypePacker;
    /**
     * Information about error.
     */
    info?: string | null;
    /**
     * List of entities related to error.
     */
    entities: Array<EntityPathPacker>;
}
