async_openai/types/realtime/
conversation.rs

1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Conversation {
    /// The unique ID of the conversation.
    pub id: String,

    /// The object type, must be "realtime.conversation".
    pub object: String,
}