objectiveai-sdk 2.0.6

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Number of log files cleared by `<scope> logs clear` (or the global
/// `logs clear`). Wire: `{"type":"notification","cleared":7}`.
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.Cleared")]
pub struct Cleared {
    pub cleared: u64,
}