Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NotificationQuery.cs
2
4{
8 public sealed class NotificationQuery
9 {
13 public IReadOnlyList<string>? Channels { get; set; }
14
18 public IReadOnlyList<NotificationState>? States { get; set; }
19
23 public int? Limit { get; set; }
24
28 public int? Skip { get; set; }
29 }
30}
Query options for retrieving notifications.
int? Skip
Gets the number of notifications to skip before returning results.
IReadOnlyList< NotificationState >? States
Gets states to include. Empty/null means all.
IReadOnlyList< string >? Channels
Gets channels to include. Empty/null means all.
int? Limit
Gets the maximum number of notifications to return.