/** * 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 native browser logout * @export * @interface NativeLogoutChallenge */ export interface NativeLogoutChallenge { /** * * @type {ContextualFlowInfo} * @memberof NativeLogoutChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof NativeLogoutChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof NativeLogoutChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof NativeLogoutChallenge */ postUrl?: string; /** * * @type {string} * @memberof NativeLogoutChallenge */ samlRequest?: string; /** * * @type {string} * @memberof NativeLogoutChallenge */ relayState?: string; /** * * @type {string} * @memberof NativeLogoutChallenge */ providerName?: string; /** * * @type {string} * @memberof NativeLogoutChallenge */ binding?: string; /** * * @type {string} * @memberof NativeLogoutChallenge */ redirectUrl?: string; /** * * @type {boolean} * @memberof NativeLogoutChallenge */ isComplete?: boolean; } /** * Check if a given object implements the NativeLogoutChallenge interface. */ export declare function instanceOfNativeLogoutChallenge(value: object): value is NativeLogoutChallenge; export declare function NativeLogoutChallengeFromJSON(json: any): NativeLogoutChallenge; export declare function NativeLogoutChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): NativeLogoutChallenge; export declare function NativeLogoutChallengeToJSON(json: any): NativeLogoutChallenge; export declare function NativeLogoutChallengeToJSONTyped(value?: NativeLogoutChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NativeLogoutChallenge.d.ts.map