Skip to content

Commit

Permalink
Adds CnameApiKey to CustomDomainVerificationResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
tmschlot committed Jan 10, 2025
1 parent ca79bd8 commit ed8f7db
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
namespace Auth0.ManagementApi.Models
using Newtonsoft.Json;

namespace Auth0.ManagementApi.Models
{
/// <summary>
/// Response when requesting a custom domain verification
/// </summary>
public class CustomDomainVerificationResponse : CustomDomainBase
{

/// <summary>
/// The CNAME API key header value.
/// </summary>
[JsonProperty("cname_api_key")]
public string CnameApiKey { get; set; }
}
}
}

0 comments on commit ed8f7db

Please sign in to comment.