/** * 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. */ import type { ErrorDetail } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; /** * Challenge shown to the user in identification stage * @export * @interface PlexAuthenticationChallenge */ export interface PlexAuthenticationChallenge { /** * * @type {ContextualFlowInfo} * @memberof PlexAuthenticationChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof PlexAuthenticationChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof PlexAuthenticationChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof PlexAuthenticationChallenge */ clientId: string; /** * * @type {string} * @memberof PlexAuthenticationChallenge */ slug: string; } /** * Check if a given object implements the PlexAuthenticationChallenge interface. */ export declare function instanceOfPlexAuthenticationChallenge(value: object): value is PlexAuthenticationChallenge; export declare function PlexAuthenticationChallengeFromJSON(json: any): PlexAuthenticationChallenge; export declare function PlexAuthenticationChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlexAuthenticationChallenge; export declare function PlexAuthenticationChallengeToJSON(json: any): PlexAuthenticationChallenge; export declare function PlexAuthenticationChallengeToJSONTyped(value?: PlexAuthenticationChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PlexAuthenticationChallenge.d.ts.map