objectiveai_sdk/cli/output/notification/cleared.rs
1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3
4/// Number of log files cleared by `<scope> logs clear` (or the global
5/// `logs clear`). Wire: `{"type":"notification","cleared":7}`.
6#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
7#[schemars(rename = "cli.output.notification.Cleared")]
8pub struct Cleared {
9 pub cleared: u64,
10}