Table of Contents

Class CreateGuardianEnrollmentTicketRequestContent

Namespace
Auth0.ManagementApi.Guardian
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record CreateGuardianEnrollmentTicketRequestContent : IEquatable<CreateGuardianEnrollmentTicketRequestContent>
Inheritance
CreateGuardianEnrollmentTicketRequestContent
Implements
Inherited Members
Extension Methods

Properties

AllowMultipleEnrollments

Optional. Allows a user who has previously enrolled in MFA to enroll with additional factors.
Note: Parameter can only be used with Universal Login; it cannot be used with Classic Login or custom MFA pages.

[JsonPropertyName("allow_multiple_enrollments")]
public bool? AllowMultipleEnrollments { get; set; }

Property Value

bool?

Email

alternate email to which the enrollment email will be sent. Optional - by default, the email will be sent to the user's default address

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

Property Value

string

EmailLocale

Optional. Specify the locale of the enrollment email. Used with send_email.

[JsonPropertyName("email_locale")]
public string? EmailLocale { get; set; }

Property Value

string

Factor

[JsonPropertyName("factor")]
public GuardianEnrollmentFactorEnum? Factor { get; set; }

Property Value

GuardianEnrollmentFactorEnum?

SendMail

Send an email to the user to start the enrollment

[JsonPropertyName("send_mail")]
public bool? SendMail { get; set; }

Property Value

bool?

UserId

user_id for the enrollment ticket

[JsonPropertyName("user_id")]
public required string UserId { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.