Table of Contents

Class CertificateSubjectDnCredential

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

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

CredentialType

[JsonPropertyName("credential_type")]
public required CertificateSubjectDnCredentialTypeEnum CredentialType { get; set; }

Property Value

CertificateSubjectDnCredentialTypeEnum

Name

Friendly name for a credential.

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

Property Value

string

Pem

PEM-formatted X509 certificate. Must be JSON escaped. Mutually exclusive with subject_dn property.

[JsonPropertyName("pem")]
public string? Pem { get; set; }

Property Value

string

SubjectDn

Subject Distinguished Name. Mutually exclusive with pem property. Applies to cert_subject_dn credential type.

[JsonPropertyName("subject_dn")]
public string? SubjectDn { 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.