Table of Contents

Class GenerateLinkResponse

Namespace
Supabase.Gotrue.Responses
Assembly
Supabase.Gotrue.dll

An extended user response returned when generating a link.

public class GenerateLinkResponse : User
Inheritance
GenerateLinkResponse
Inherited Members

Properties

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

string

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

string

HashedToken

The hashed token appended to the action link.

[JsonProperty("hashed_token")]
public string? HashedToken { get; set; }

Property Value

string

RedirectTo

The URL appended to the action link.

[JsonProperty("redirect_to")]
public string? RedirectTo { get; set; }

Property Value

string

VerificationType

The verification type that the email link is associated to.

[JsonProperty("verification_type")]
public string? VerificationType { get; set; }

Property Value

string