-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds CnameApiKey to CustomDomainVerificationResponse
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
12 changes: 9 additions & 3 deletions
12
src/Auth0.ManagementApi/Models/CustomDomain/CustomDomainVerificationResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} | ||
} |