Class CreateCustomDomainResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateCustomDomainResponseContent : IJsonOnDeserialized, IEquatable<CreateCustomDomainResponseContent>
- Inheritance
-
CreateCustomDomainResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Certificate
[JsonPropertyName("certificate")]
public DomainCertificate? Certificate { get; set; }
Property Value
CustomClientIpHeader
The HTTP header to fetch the client's IP address
[JsonPropertyName("custom_client_ip_header")]
public Optional<string?> CustomClientIpHeader { get; set; }
Property Value
CustomDomainId
ID of the custom domain.
[JsonPropertyName("custom_domain_id")]
public required string CustomDomainId { get; set; }
Property Value
Domain
Domain name.
[JsonPropertyName("domain")]
public required string Domain { get; set; }
Property Value
DomainMetadata
[JsonPropertyName("domain_metadata")]
public Dictionary<string, string?>? DomainMetadata { get; set; }
Property Value
IsDefault
Whether this is the default custom domain (true) or not (false).
[JsonPropertyName("is_default")]
public bool? IsDefault { get; set; }
Property Value
- bool?
Primary
Whether this is a primary domain (true) or not (false).
[JsonPropertyName("primary")]
public required bool Primary { get; set; }
Property Value
RelyingPartyIdentifier
Relying Party ID (rpId) to be used for Passkeys on this custom domain. If not present, the full domain will be used.
[JsonPropertyName("relying_party_identifier")]
public string? RelyingPartyIdentifier { get; set; }
Property Value
Status
[JsonPropertyName("status")]
public required CustomDomainStatusFilterEnum Status { get; set; }
Property Value
TlsPolicy
The TLS version policy
[JsonPropertyName("tls_policy")]
public string? TlsPolicy { get; set; }
Property Value
Type
[JsonPropertyName("type")]
public required CustomDomainTypeEnum Type { get; set; }
Property Value
Verification
[JsonPropertyName("verification")]
public required DomainVerification Verification { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.