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