Skip to main content

objectiveai_cli_sdk/output/notification/
instructions.rs

1use serde::{Deserialize, Serialize};
2
3/// Wire shape for `<scope> instructions get` (and the global
4/// `instructions get`). The body is the instruction text the user is
5/// meant to follow plus the generated instructions ID line.
6#[derive(Serialize, Deserialize, Debug, Clone)]
7pub struct Instructions {
8    pub instructions: String,
9}