Skip to content

Commit

Permalink
Adds CnameApiKey to CustomDomainVerificationResponse (#757) (#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
kailash-b authored Jan 14, 2025
2 parents ca79bd8 + ed8f7db commit 72e9295
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 72e9295

Please sign in to comment.