| 603 | #[derive(Clone, Deserialize, Serialize, Eq, PartialEq)] |
| 604 | #[serde(rename_all = "camelCase")] |
| 605 | pub struct UpdateLinkParentTopics { |
| 606 | pub actor_id: String, |
| 607 | pub added_parent_topics: TopicInfoList, |
| 608 | pub date: Timestamp, |
| 609 | pub id: ExternalId, |
| 610 | pub removed_parent_topics: TopicInfoList, |
| 611 | pub updated_link: LinkInfo, |
| 612 | } |
| 613 | |
| 614 | impl UpdateLinkParentTopics { |
| 615 | fn ids(&self) -> HashSet<&ExternalId> { |
no outgoing calls