Table of Contents

Class SubscriptionModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

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

string

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

ICollection<string>

Name

The subscription name

[JsonProperty("Name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }

Property Value

string

WebHookUri

The webhook endpoint

[JsonProperty("WebHookUri", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string WebHookUri { get; set; }

Property Value

string