async_openai/types/realtime/
conversation.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Serialize, Deserialize, Clone)]
4pub struct Conversation {
5    /// The unique ID of the conversation.
6    pub id: String,
7
8    /// The object type, must be "realtime.conversation".
9    pub object: String,
10}