/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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. */ import type { ErrorDetail } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; /** * Challenge for iframe logout * @export * @interface IframeLogoutChallenge */ export interface IframeLogoutChallenge { /** * * @type {ContextualFlowInfo} * @memberof IframeLogoutChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof IframeLogoutChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof IframeLogoutChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {Array<{ [key: string]: any; }>} * @memberof IframeLogoutChallenge */ logoutUrls?: Array<{ [key: string]: any; }>; } /** * Check if a given object implements the IframeLogoutChallenge interface. */ export declare function instanceOfIframeLogoutChallenge(value: object): value is IframeLogoutChallenge; export declare function IframeLogoutChallengeFromJSON(json: any): IframeLogoutChallenge; export declare function IframeLogoutChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): IframeLogoutChallenge; export declare function IframeLogoutChallengeToJSON(json: any): IframeLogoutChallenge; export declare function IframeLogoutChallengeToJSONTyped(value?: IframeLogoutChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=IframeLogoutChallenge.d.ts.map