/** * 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'; /** * Base login challenge for Identification stage * @export * @interface TelegramLoginChallenge */ export interface TelegramLoginChallenge { /** * * @type {ContextualFlowInfo} * @memberof TelegramLoginChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof TelegramLoginChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof TelegramLoginChallenge */ responseErrors?: { [key: string]: Array; }; /** * Telegram bot username * @type {string} * @memberof TelegramLoginChallenge */ botUsername: string; /** * * @type {boolean} * @memberof TelegramLoginChallenge */ requestMessageAccess: boolean; } /** * Check if a given object implements the TelegramLoginChallenge interface. */ export declare function instanceOfTelegramLoginChallenge(value: object): value is TelegramLoginChallenge; export declare function TelegramLoginChallengeFromJSON(json: any): TelegramLoginChallenge; export declare function TelegramLoginChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelegramLoginChallenge; export declare function TelegramLoginChallengeToJSON(json: any): TelegramLoginChallenge; export declare function TelegramLoginChallengeToJSONTyped(value?: TelegramLoginChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TelegramLoginChallenge.d.ts.map