1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; /// Result of `functions inventions state get`. /// /// Wire: `{"type":"notification","state":{...GetFunctionInventionStateResponse...}}`. #[derive(Serialize, Deserialize, Debug, Clone)] pub struct State { pub state: objectiveai_sdk::functions::inventions::state::response::GetFunctionInventionStateResponse, }