| 635 | #[derive(Clone, Deserialize, Serialize, Eq, PartialEq)] |
| 636 | #[serde(rename_all = "camelCase")] |
| 637 | pub struct UpdateTopicParentTopics { |
| 638 | pub actor_id: String, |
| 639 | pub added_parent_topics: TopicInfoList, |
| 640 | pub id: ExternalId, |
| 641 | pub date: Timestamp, |
| 642 | pub parent_topic_ids: BTreeSet<ExternalId>, |
| 643 | pub removed_parent_topics: TopicInfoList, |
| 644 | pub updated_topic: TopicInfo, |
| 645 | } |
| 646 | |
| 647 | impl UpdateTopicParentTopics { |
| 648 | fn ids(&self) -> HashSet<&ExternalId> { |
no outgoing calls