Interface AuthorizationStateWaitEmailAddress

TDLib needs the user's email address to authorize. Call setAuthenticationEmailAddress to provide the email address, or directly call checkAuthenticationEmailCode with Apple ID/Google ID token if allowed. Subtype of AuthorizationState.

interface AuthorizationStateWaitEmailAddress {
    @type: "authorizationStateWaitEmailAddress";
    allow_apple_id?: boolean;
    allow_google_id?: boolean;
}

Properties

@type: "authorizationStateWaitEmailAddress"
allow_apple_id?: boolean

True, if authorization through Apple ID is allowed.

allow_google_id?: boolean

True, if authorization through Google ID is allowed.