| 13 | |
| 14 | #[derive(Debug, Serialize, Deserialize)] |
| 15 | struct ThreadMeta { |
| 16 | #[serde(rename = "id")] |
| 17 | thread_id: Option<String>, |
| 18 | #[serde(flatten)] |
| 19 | extra: HashMap<String, serde_json::Value>, |
| 20 | } |
| 21 | |
| 22 | #[derive(Debug, Serialize, Deserialize)] |
| 23 | struct SyncThreadRequest { |
nothing calls this directly
no outgoing calls
no test coverage detected