/** * 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. */ /** * Generic API Error * @export * @interface GenericError */ export interface GenericError { /** * * @type {string} * @memberof GenericError */ detail: string; /** * * @type {string} * @memberof GenericError */ code?: string; } /** * Check if a given object implements the GenericError interface. */ export declare function instanceOfGenericError(value: object): value is GenericError; export declare function GenericErrorFromJSON(json: any): GenericError; export declare function GenericErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenericError; export declare function GenericErrorToJSON(json: any): GenericError; export declare function GenericErrorToJSONTyped(value?: GenericError | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GenericError.d.ts.map