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