/** * 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. */ /** * Base class for all challenge responses * @export * @interface TelegramChallengeResponseRequest */ export interface TelegramChallengeResponseRequest { /** * * @type {number} * @memberof TelegramChallengeResponseRequest */ id: number; /** * * @type {string} * @memberof TelegramChallengeResponseRequest */ firstName?: string; /** * * @type {string} * @memberof TelegramChallengeResponseRequest */ lastName?: string; /** * * @type {string} * @memberof TelegramChallengeResponseRequest */ username?: string; /** * * @type {string} * @memberof TelegramChallengeResponseRequest */ photoUrl?: string; /** * * @type {number} * @memberof TelegramChallengeResponseRequest */ authDate: number; /** * * @type {string} * @memberof TelegramChallengeResponseRequest */ hash: string; /** * * @type {string} * @memberof TelegramChallengeResponseRequest */ component?: string; } /** * Check if a given object implements the TelegramChallengeResponseRequest interface. */ export declare function instanceOfTelegramChallengeResponseRequest(value: object): value is TelegramChallengeResponseRequest; export declare function TelegramChallengeResponseRequestFromJSON(json: any): TelegramChallengeResponseRequest; export declare function TelegramChallengeResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelegramChallengeResponseRequest; export declare function TelegramChallengeResponseRequestToJSON(json: any): TelegramChallengeResponseRequest; export declare function TelegramChallengeResponseRequestToJSONTyped(value?: TelegramChallengeResponseRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TelegramChallengeResponseRequest.d.ts.map