account.EmailVerifiedLogin

class pyrogram.raw.types.account.EmailVerifiedLogin

The email was verified correctly, and a login code was just sent to it.

Constructor of EmailVerified.

Details:
  • Layer: 223

  • ID: E1BB0D61

Parameters:
  • email (str) – The verified email address.

  • sent_code (auth.SentCode) – Info about the sent login code

Functions:

This object can be returned by 1 function.

account.VerifyEmail

Verify an email address.

TL Schema

account.emailVerifiedLogin#e1bb0d61
email:string
sent_code:auth.SentCode

= account.EmailVerified

Parameter Tree

EmailVerifiedLogin
├── emailstring
└── sent_codeauth.SentCode
├── auth.SentCode
│ ├── typeauth.SentCodeType
│ │ ├── auth.SentCodeTypeApp
│ │ │ └── lengthint
│ │ ├── auth.SentCodeTypeSms
│ │ │ └── lengthint
│ │ ├── auth.SentCodeTypeCall
│ │ │ └── lengthint
│ │ ├── auth.SentCodeTypeFlashCall
│ │ │ └── patternstring
│ │ ├── auth.SentCodeTypeMissedCall
│ │ │ ├── prefixstring
│ │ │ └── lengthint
│ │ ├── auth.SentCodeTypeEmailCode
│ │ │ ├── apple_signin_allowedtrue (optional)
│ │ │ ├── google_signin_allowedtrue (optional)
│ │ │ ├── email_patternstring
│ │ │ ├── lengthint
│ │ │ ├── reset_available_periodint (optional)
│ │ │ └── reset_pending_dateint (optional)
│ │ │ ├── apple_signin_allowedtrue (optional)
│ │ │ └── google_signin_allowedtrue (optional)
│ │ │ ├── urlstring
│ │ │ └── lengthint
│ │ │ ├── noncebytes (optional)
│ │ │ ├── play_integrity_project_idlong (optional)
│ │ │ ├── play_integrity_noncebytes (optional)
│ │ │ ├── receiptstring (optional)
│ │ │ ├── push_timeoutint (optional)
│ │ │ └── lengthint
│ │ ├── auth.SentCodeTypeSmsWord
│ │ │ └── beginningstring (optional)
│ │ └── auth.SentCodeTypeSmsPhrase
│ │ └── beginningstring (optional)
│ ├── phone_code_hashstring
│ ├── next_typeauth.CodeType (optional)
│ │ ├── auth.CodeTypeSms
│ │ ├── auth.CodeTypeCall
│ │ ├── auth.CodeTypeFlashCall
│ │ ├── auth.CodeTypeMissedCall
│ │ └── auth.CodeTypeFragmentSms
│ └── timeoutint (optional)
│ └── authorizationauth.Authorization
│ ├── auth.Authorization
│ │ ├── setup_password_requiredtrue (optional)
│ │ ├── otherwise_relogin_daysint (optional)
│ │ ├── tmp_sessionsint (optional)
│ │ ├── future_auth_tokenbytes (optional)
│ │ └── userUser
│ │ ├── UserEmpty
│ │ └── User
│ └── terms_of_servicehelp.TermsOfService (optional)
│ └── help.TermsOfService
├── store_productstring
├── phone_code_hashstring
├── support_email_addressstring
├── support_email_subjectstring
├── currencystring
└── amountlong

Example

EmailVerifiedLogin(
    email="text",
    sent_code=SentCode(
        type=SentCodeTypeApp(length=0),
        phone_code_hash="text"
    ),
)