| 42 | |
| 43 | #[derive(Debug, Serialize, Deserialize)] |
| 44 | pub struct MessageContent { |
| 45 | #[serde(rename = "type")] |
| 46 | pub content_type: String, |
| 47 | #[serde(flatten)] |
| 48 | pub data: MessageContentData, |
| 49 | } |
| 50 | |
| 51 | #[derive(Debug, Serialize, Deserialize)] |
| 52 | #[serde(untagged)] |
nothing calls this directly
no outgoing calls
no test coverage detected