Class GetOrganizationDiscoveryDomainByNameResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetOrganizationDiscoveryDomainByNameResponseContent : IJsonOnDeserialized, IEquatable<GetOrganizationDiscoveryDomainByNameResponseContent>
- Inheritance
-
GetOrganizationDiscoveryDomainByNameResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Domain
The domain name to associate with the organization e.g. acme.com.
[JsonPropertyName("domain")]
public required string Domain { get; set; }
Property Value
Id
Organization discovery domain identifier.
[JsonPropertyName("id")]
public required string Id { get; set; }
Property Value
Status
[JsonPropertyName("status")]
public required OrganizationDiscoveryDomainStatus Status { get; set; }
Property Value
UseForOrganizationDiscovery
Indicates whether this domain should be used for organization discovery.
[JsonPropertyName("use_for_organization_discovery")]
public bool? UseForOrganizationDiscovery { get; set; }
Property Value
- bool?
VerificationHost
The full domain where the TXT record should be added.
[JsonPropertyName("verification_host")]
public required string VerificationHost { get; set; }
Property Value
VerificationTxt
A unique token generated for the discovery domain. This must be placed in a DNS TXT record at the location specified by the verification_host field to prove domain ownership.
[JsonPropertyName("verification_txt")]
public required string VerificationTxt { 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.