Class Incident
Class representing an incident inside a service (Status API).
Inheritance
System.Object
Incident
Namespace:RiotSharp.StatusEndpoint
Assembly:RiotSharp.dll
Syntax
public class Incident : object
Properties
Active
Whether or not this incident is still active.
Declaration
public bool Active { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CreatedAt
Date at which point the incident was logged.
Declaration
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Id
Id of the incident.
Declaration
public long Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Updates
List of updates for this incident.
Declaration
public List<Message> Updates { get; set; }
Property Value
Type | Description |
---|---|
List<><Message> |