| |
/// List all items in your inbox
|
| |
List(ListArgs),
|
| |
/// Show a notification
|
| + |
///
|
| + |
/// The NOTIFICATION_ID can be found when listing the items in your inbox
|
| + |
///
|
| + |
/// Showing a notification will mark that notification as read
|
| |
Show {
|
| |
/// The notification to display
|
| |
#[arg(value_name = "NOTIFICATION_ID")]
|
| |
id: NotificationId,
|
| |
},
|
| |
/// Clear notifications
|
| + |
///
|
| + |
/// This will clear all the specified notifications
|
| + |
///
|
| + |
/// If no notifications are specified then all notifications are cleared
|
| |
Clear {
|
| - |
/// A list of notification to clear
|
| + |
/// A list of notifications to clear
|
| |
#[arg(value_name = "NOTIFICATION_ID")]
|
| |
ids: Option<Vec<NotificationId>>,
|
| |
},
|