-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycorealertsalert AlertState
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Alerts.Alert
SharedLibraryCore.Alerts.Alert.AlertState[[AlertState]]
end
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 |
Returns | Name |
---|---|
AlertState |
Build () |
public AlertState()
public static AlertState Build()
public Guid AlertId { get; }
public AlertCategory Category { get; set; }
public DateTime OccuredAt { get; set; }
public Nullable<DateTime> ExpiresAt { get; set; }
public string Message { get; set; }
public string Source { get; set; }
public Nullable<int> RecipientId { get; set; }
public Nullable<int> SourceId { get; set; }
public Nullable<int> ReferenceId { get; set; }
public Nullable<bool> Delivered { get; set; }
public Nullable<bool> Consumed { get; set; }
public Nullable<Permission> MinimumPermission { get; set; }
public string Type { get; set; }
Generated with ModularDoc