/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 OauthResultRequest */ export interface OauthResultRequest { /** * Temporary auth state for oauth2 access * @type {string} * @memberof OauthResultRequest */ state?: string; /** * JWT Auth Token coming from Telegram Bot containing user information * @type {string} * @memberof OauthResultRequest */ telegramAuthToken?: string; /** * Force create a user for Telegram Auto Login * @type {boolean} * @memberof OauthResultRequest */ forceCreateUser?: boolean; /** * * @type {string} * @memberof OauthResultRequest */ code?: string; /** * * @type {string} * @memberof OauthResultRequest */ sessionPublicKey?: string; /** * When provided, used to verify that a captcha is valid and get the success/failure result from the captcha provider server-side. * @type {string} * @memberof OauthResultRequest */ captchaToken?: string; } export declare function OauthResultRequestFromJSON(json: any): OauthResultRequest; export declare function OauthResultRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthResultRequest; export declare function OauthResultRequestToJSON(value?: OauthResultRequest | null): any;