Layer 228
constructor
account.emailVerifiedLogin#e1bb0d61 email:string sent_code:auth.SentCode = account.EmailVerified;

Parameters

Name Type Description
Email string The verified email address.
SentCode auth.SentCode Info about the sent login code

Gogram Example

// Creating AccountEmailVerifiedLogin constructor
obj := &tg.AccountEmailVerifiedLogin{
    Email: "user@example.com",
    SentCode: nil,
}