/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { UnprocessableEntityErrorCode } from './UnprocessableEntityErrorCode'; import { UnprocessableEntityErrorPayload } from './UnprocessableEntityErrorPayload'; /** * * @export * @interface UnprocessableEntity */ export interface UnprocessableEntity { /** * Human-readable error message describing the validation failure * @type {string} * @memberof UnprocessableEntity */ error: string; /** * * @type {UnprocessableEntityErrorCode} * @memberof UnprocessableEntity */ code?: UnprocessableEntityErrorCode; /** * * @type {UnprocessableEntityErrorPayload} * @memberof UnprocessableEntity */ payload?: UnprocessableEntityErrorPayload; } export declare function UnprocessableEntityFromJSON(json: any): UnprocessableEntity; export declare function UnprocessableEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntity; export declare function UnprocessableEntityToJSON(value?: UnprocessableEntity | null): any;