Class PushProfile
Push Profile (subscription to a topic)
[DataContract]
public class PushProfile : NamedItem
- Inheritance
-
PushProfile
- Inherited Members
Constructors
PushProfile()
public PushProfile()
Properties
Description
Description of this profile's purpose
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "description")]
public string? Description { get; set; }
Property Value
Iname
The immutable name (custom identifier)
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "iname")]
public string? Iname { get; set; }
Property Value
Receiver
The receiver to send notifications to
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "receiver")]
public PushReceiver? Receiver { get; set; }
Property Value
Topic
The topic to subscribe to
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "topic")]
public PushTopicReference? Topic { get; set; }