| 478 | #[derive(Clone, Deserialize, Serialize, Eq, PartialEq)] |
| 479 | #[serde(rename_all = "camelCase")] |
| 480 | pub struct DeleteTopic { |
| 481 | pub actor_id: String, |
| 482 | pub id: ExternalId, |
| 483 | pub child_links: LinkInfoList, |
| 484 | pub child_topics: TopicInfoList, |
| 485 | pub date: Timestamp, |
| 486 | pub deleted_topic: TopicInfo, |
| 487 | pub parent_topics: TopicInfoList, |
| 488 | } |
| 489 | |
| 490 | impl DeleteTopic { |
| 491 | fn ids(&self) -> HashSet<&ExternalId> { |