/** * 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'; /** * Special challenge for apple-native authentication flow, which happens on the client. * @export * @interface AppleLoginChallenge */ export interface AppleLoginChallenge { /** * * @type {ContextualFlowInfo} * @memberof AppleLoginChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AppleLoginChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AppleLoginChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AppleLoginChallenge */ clientId: string; /** * * @type {string} * @memberof AppleLoginChallenge */ scope: string; /** * * @type {string} * @memberof AppleLoginChallenge */ redirectUri: string; /** * * @type {string} * @memberof AppleLoginChallenge */ state: string; } /** * Check if a given object implements the AppleLoginChallenge interface. */ export declare function instanceOfAppleLoginChallenge(value: object): value is AppleLoginChallenge; export declare function AppleLoginChallengeFromJSON(json: any): AppleLoginChallenge; export declare function AppleLoginChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppleLoginChallenge; export declare function AppleLoginChallengeToJSON(json: any): AppleLoginChallenge; export declare function AppleLoginChallengeToJSONTyped(value?: AppleLoginChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AppleLoginChallenge.d.ts.map