/** * 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. */ /** * * @export * @interface TelegramAuthRequest */ export interface TelegramAuthRequest { /** * * @type {number} * @memberof TelegramAuthRequest */ id: number; /** * * @type {string} * @memberof TelegramAuthRequest */ firstName?: string; /** * * @type {string} * @memberof TelegramAuthRequest */ lastName?: string; /** * * @type {string} * @memberof TelegramAuthRequest */ username?: string; /** * * @type {string} * @memberof TelegramAuthRequest */ photoUrl?: string; /** * * @type {number} * @memberof TelegramAuthRequest */ authDate: number; /** * * @type {string} * @memberof TelegramAuthRequest */ hash: string; } /** * Check if a given object implements the TelegramAuthRequest interface. */ export declare function instanceOfTelegramAuthRequest(value: object): value is TelegramAuthRequest; export declare function TelegramAuthRequestFromJSON(json: any): TelegramAuthRequest; export declare function TelegramAuthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelegramAuthRequest; export declare function TelegramAuthRequestToJSON(json: any): TelegramAuthRequest; export declare function TelegramAuthRequestToJSONTyped(value?: TelegramAuthRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TelegramAuthRequest.d.ts.map