Table of Contents

Class PasswordlessEmailResponse

Namespace
Auth0.AuthenticationApi.Models
Assembly
Auth0.AuthenticationApi.dll

Represents a Passwordless email response.

public class PasswordlessEmailResponse
Inheritance
PasswordlessEmailResponse
Inherited Members

Properties

Email

Email to which the request was sent.

[JsonProperty("email")]
public string Email { get; set; }

Property Value

string

EmailVerified

Whether the email address has been verified (true) or has not been verified (false).

[JsonProperty("email_verified")]
public bool? EmailVerified { get; set; }

Property Value

bool?

Id

Identifier of this request.

[JsonProperty("_id")]
public string Id { get; set; }

Property Value

string