Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds CnameApiKey to CustomDomainVerificationResponse (#757) #758

Closed
wants to merge 9 commits into from
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; }
}
}
}