Table of Contents

Class EnrollmentsResponse

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Represents a Guardian Enrollment.

public class EnrollmentsResponse
Inheritance
EnrollmentsResponse
Inherited Members

Properties

AuthMethod

Authentication method for this enrollment. Can be authenticator, guardian, sms, webauthn-roaming or webauthn-platform.

[JsonProperty("auth_method")]
[JsonConverter(typeof(StringEnumConverter))]
public EnrollmentAuthMethod AuthMethod { get; set; }

Property Value

EnrollmentAuthMethod

EnrolledAt

Start date and time of this enrollment.

[JsonProperty("enrolled_at")]
public DateTime EnrolledAt { get; set; }

Property Value

DateTime

Id

Enrollment generated id.

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

Property Value

string

Identifier

Device identifier (usually phone identifier) of this enrollment.

[JsonProperty("identifier")]
public string Identifier { get; set; }

Property Value

string

LastAuth

Last authentication date and time of this enrollment.

[JsonProperty("last_auth")]
public DateTime LastAuth { get; set; }

Property Value

DateTime

Name

Enrollment name (usually phone number).

[JsonProperty("name")]
public string Name { get; set; }

Property Value

string

PhoneNumber

Phone number for this enrollment.

[JsonProperty("phone_number")]
public string PhoneNumber { get; set; }

Property Value

string

Status

Enrollment status.

[JsonProperty("status")]
[JsonConverter(typeof(StringEnumConverter))]
public EnrollmentStatus Status { get; set; }

Property Value

EnrollmentStatus

Type

Enrollment type.

[JsonProperty("type")]
public string Type { get; set; }

Property Value

string