objectiveai_cli_sdk/output/notification/log_stream_ready.rs
1use serde::{Deserialize, Serialize};
2
3/// Emitted mid-stream by long-running `*/create` commands once a log
4/// id has been allocated and the log file is available. Replaces the
5/// prior `"Logs ID: ..."` plaintext sentinel.
6///
7/// Wire: `{"type":"notification","log_stream_ready":"<id>"}`.
8#[derive(Serialize, Deserialize, Debug, Clone)]
9pub struct LogStreamReady {
10 pub log_stream_ready: String,
11}