Skip to content

Commit

Permalink
Generated from ddb9999a604bd843c6b0c72d82c3b080478ba4f9
Browse files Browse the repository at this point in the history
Update privateLinkScopes_API.json
  • Loading branch information
SDK Automation committed Feb 27, 2020
1 parent 0eb80f6 commit 529e172
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public MetricAlertAction()
/// </summary>
/// <param name="actionGroupId">the id of the action group to
/// use.</param>
/// <param name="webhookProperties">The properties of a webhook
/// <param name="webHookProperties">The properties of a webhook
/// object.</param>
public MetricAlertAction(string actionGroupId = default(string), IDictionary<string, string> webhookProperties = default(IDictionary<string, string>))
public MetricAlertAction(string actionGroupId = default(string), IDictionary<string, string> webHookProperties = default(IDictionary<string, string>))
{
ActionGroupId = actionGroupId;
WebhookProperties = webhookProperties;
WebHookProperties = webHookProperties;
CustomInit();
}

Expand All @@ -56,8 +56,8 @@ public MetricAlertAction()
/// <summary>
/// Gets or sets the properties of a webhook object.
/// </summary>
[JsonProperty(PropertyName = "webhookProperties")]
public IDictionary<string, string> WebhookProperties { get; set; }
[JsonProperty(PropertyName = "webHookProperties")]
public IDictionary<string, string> WebHookProperties { get; set; }

}
}

0 comments on commit 529e172

Please sign in to comment.