/** * 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. */ /** * Serializer for rest_framework's error messages * @export * @interface ErrorDetail */ export interface ErrorDetail { /** * * @type {string} * @memberof ErrorDetail */ string: string; /** * * @type {string} * @memberof ErrorDetail */ code: string; } /** * Check if a given object implements the ErrorDetail interface. */ export declare function instanceOfErrorDetail(value: object): value is ErrorDetail; export declare function ErrorDetailFromJSON(json: any): ErrorDetail; export declare function ErrorDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorDetail; export declare function ErrorDetailToJSON(json: any): ErrorDetail; export declare function ErrorDetailToJSONTyped(value?: ErrorDetail | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ErrorDetail.d.ts.map