Subscriber Class

Definition

An individual that would like to subscribe to events that occur on a pipeline.

[System.ComponentModel.TypeConverter(typeof(ADT.Models.SubscriberTypeConverter))]
public class Subscriber : ADT.Models.ISubscriber
[<System.ComponentModel.TypeConverter(typeof(ADT.Models.SubscriberTypeConverter))>]
type Subscriber = class
    interface ISubscriber
    interface IJsonSerializable
Public Class Subscriber
Implements ISubscriber
Inheritance
Subscriber
Attributes
Implements

Constructors

Name Description
Subscriber()

Creates an new Subscriber instance.

Properties

Name Description
Email

Email of the subscriber

Notification

Number specifying what notifications to receive

Methods

Name Description
DeserializeFromDictionary(IDictionary)

Deserializes a IDictionary into an instance of Subscriber.

DeserializeFromPSObject(PSObject)

Deserializes a PSObject into an instance of Subscriber.

FromJson(JsonNode)

Deserializes a JsonNode into an instance of ADT.Models.ISubscriber.

FromJsonString(String)

Creates a new instance of Subscriber, deserializing the content from a json string.

ToJson(JsonObject, SerializationMode)

Serializes this instance of Subscriber into a JsonNode.

ToJsonString()

Serializes this instance to a json string.

ToString()

Applies to