/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Validation Error * @export * @interface ValidationError */ export interface ValidationError { [key: string]: any | any; /** * * @type {Array} * @memberof ValidationError */ nonFieldErrors?: Array; /** * * @type {string} * @memberof ValidationError */ code?: string; } /** * Check if a given object implements the ValidationError interface. */ export declare function instanceOfValidationError(value: object): value is ValidationError; export declare function ValidationErrorFromJSON(json: any): ValidationError; export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError; export declare function ValidationErrorToJSON(json: any): ValidationError; export declare function ValidationErrorToJSONTyped(value?: ValidationError | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ValidationError.d.ts.map