Class GenerateLinkResponse
An extended user response returned when generating a link.
public class GenerateLinkResponse : User
- Inheritance
-
GenerateLinkResponse
- Inherited Members
Properties
ActionLink
The email link to send to the user. The action_link follows the following format: auth/v1/verify?type={verification_type}&token={hashed_token}&redirect_to={redirect_to}
[JsonProperty("action_link")]
public string? ActionLink { get; set; }
Property Value
EmailOtp
The raw email OTP. You should send this in the email if you want your users to verify using an OTP instead of the action link.
[JsonProperty("email_otp")]
public string? EmailOtp { get; set; }
Property Value
HashedToken
The hashed token appended to the action link.
[JsonProperty("hashed_token")]
public string? HashedToken { get; set; }
Property Value
RedirectTo
The URL appended to the action link.
[JsonProperty("redirect_to")]
public string? RedirectTo { get; set; }
Property Value
VerificationType
The verification type that the email link is associated to.
[JsonProperty("verification_type")]
public string? VerificationType { get; set; }