1 sharedlibrarycorealertsalert AlertState
RaidMax edited this page 2023-05-20 22:09:21 -05:00

AlertState Public class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Alerts.Alert
  SharedLibraryCore.Alerts.Alert.AlertState[[AlertState]]
  end

Members

Properties

Public properties

Type Name Methods
Guid AlertId get
AlertCategory Category get, set
Nullable<bool> Consumed get, set
Nullable<bool> Delivered get, set
Nullable<DateTime> ExpiresAt get, set
string Message get, set
Nullable<Permission> MinimumPermission get, set
DateTime OccuredAt get, set
Nullable<int> RecipientId get, set
Nullable<int> ReferenceId get, set
string Source get, set
Nullable<int> SourceId get, set
string Type get, set

Methods

Public Static methods

Returns Name
AlertState Build()

Details

Constructors

AlertState

Source code

public AlertState()

Methods

Build

Source code

public static AlertState Build()

Properties

AlertId

public Guid AlertId { get; }

Category

public AlertCategory Category { get; set; }

OccuredAt

public DateTime OccuredAt { get; set; }

ExpiresAt

public Nullable<DateTime> ExpiresAt { get; set; }

Message

public string Message { get; set; }

Source

public string Source { get; set; }

RecipientId

public Nullable<int> RecipientId { get; set; }

SourceId

public Nullable<int> SourceId { get; set; }

ReferenceId

public Nullable<int> ReferenceId { get; set; }

Delivered

public Nullable<bool> Delivered { get; set; }

Consumed

public Nullable<bool> Consumed { get; set; }

MinimumPermission

public Nullable<Permission> MinimumPermission { get; set; }

Type

public string Type { get; set; }

Generated with ModularDoc