Class WolfNotification
Wolf notification.
Implements
Namespace: TehGM.Wolfringo
Assembly: Wolfringo.Core.dll
Syntax
public class WolfNotification : IWolfEntity
Constructors
| Improve this Doc View SourceWolfNotification()
Creates a new instance.
Declaration
[JsonConstructor]
protected WolfNotification()
Properties
| Improve this Doc View SourceEndTime
Notification's end time.
Declaration
[JsonProperty("endAt")]
public DateTime EndTime { get; }
Property Value
Type | Description |
---|---|
DateTime |
ID
ID of the notification.
Declaration
[JsonProperty("id")]
public uint ID { get; }
Property Value
Type | Description |
---|---|
UInt32 |
ImageURL
URL to notification's image.
Declaration
[JsonProperty("imageUrl")]
public string ImageURL { get; }
Property Value
Type | Description |
---|---|
String |
IsFavourite
Is this notification favourited?
Declaration
[JsonProperty("favourite")]
public bool IsFavourite { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsGlobal
Is this notification global?
Declaration
[JsonProperty("global")]
public bool IsGlobal { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsPersistent
Is this notification persistent?
Declaration
[JsonProperty("persistent")]
public bool IsPersistent { get; }
Property Value
Type | Description |
---|---|
Boolean |
LayoutType
Layout type of the notification.
Declaration
[JsonProperty("layoutType")]
public int LayoutType { get; }
Property Value
Type | Description |
---|---|
Int32 |
Link
Notification's link.
Declaration
[JsonProperty("link")]
public string Link { get; }
Property Value
Type | Description |
---|---|
String |
Message
Notification's message text.
Declaration
[JsonProperty("message")]
public string Message { get; }
Property Value
Type | Description |
---|---|
String |
NewsStreamType
Type of news stream.
Declaration
[JsonProperty("newsStreamType")]
public int NewsStreamType { get; }
Property Value
Type | Description |
---|---|
Int32 |
StartTime
Notification's start time.
Declaration
[JsonProperty("startAt")]
public DateTime StartTime { get; }
Property Value
Type | Description |
---|---|
DateTime |
Title
Notification's title.
Declaration
[JsonProperty("title")]
public string Title { get; }
Property Value
Type | Description |
---|---|
String |
Type
Notification type.
Declaration
[JsonProperty("type")]
public int Type { get; }
Property Value
Type | Description |
---|---|
Int32 |