Table of Contents

Class UpdateUserAuthenticationMethodResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

The successfully created authentication method.

[Serializable]
public record UpdateUserAuthenticationMethodResponseContent : IJsonOnDeserialized, IEquatable<UpdateUserAuthenticationMethodResponseContent>
Inheritance
UpdateUserAuthenticationMethodResponseContent
Implements
Inherited Members
Extension Methods

Properties

Aaguid

Applies to passkey authentication methods only. Authenticator Attestation Globally Unique Identifier.

[JsonPropertyName("aaguid")]
public string? Aaguid { get; set; }

Property Value

string

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

AuthenticationMethods

[JsonPropertyName("authentication_methods")]
public IEnumerable<UserAuthenticationMethodProperties>? AuthenticationMethods { get; set; }

Property Value

IEnumerable<UserAuthenticationMethodProperties>

CreatedAt

Authentication method creation date

[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

Email

Applies to email authentication methods only. The email address used to send verification messages.

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

Property Value

string

Id

The ID of the newly created authentication method (automatically generated by the application)

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

Property Value

string

KeyId

Applies to webauthn authentication methods only. The id of the credential.

[JsonPropertyName("key_id")]
public string? KeyId { get; set; }

Property Value

string

Name

A human-readable label to identify the authentication method.

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

Property Value

string

PhoneNumber

Applies to phone authentication methods only. The destination phone number used to send verification codes via text and voice.

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

Property Value

string

PreferredAuthenticationMethod

[JsonPropertyName("preferred_authentication_method")]
public PreferredAuthenticationMethodEnum? PreferredAuthenticationMethod { get; set; }

Property Value

PreferredAuthenticationMethodEnum?

PublicKey

Applies to webauthn authentication methods only. The public key.

[JsonPropertyName("public_key")]
public string? PublicKey { get; set; }

Property Value

string

RelyingPartyIdentifier

Applies to webauthn authentication methods only. The relying party identifier.

[JsonPropertyName("relying_party_identifier")]
public string? RelyingPartyIdentifier { get; set; }

Property Value

string

TotpSecret

Base32 encoded secret for TOTP generation

[JsonPropertyName("totp_secret")]
public string? TotpSecret { get; set; }

Property Value

string

Type

[JsonPropertyName("type")]
public required CreatedAuthenticationMethodTypeEnum Type { get; set; }

Property Value

CreatedAuthenticationMethodTypeEnum

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.