Class SubscriptionModel
The Event Grid Domain topic subscription
public class SubscriptionModel
- Inheritance
-
SubscriptionModel
- Inherited Members
Properties
DomainId
The domainId that is also the topic name
[JsonProperty("DomainId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string DomainId { get; set; }
Property Value
EventTypes
The event types that the subscription is about.
[JsonProperty("EventTypes", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> EventTypes { get; set; }
Property Value
Name
The subscription name
[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
WebHookUri
The webhook endpoint
[JsonProperty("WebHookUri", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string WebHookUri { get; set; }