| 453 | #[derive(Clone, Deserialize, Serialize, Eq, PartialEq)] |
| 454 | #[serde(rename_all = "camelCase")] |
| 455 | pub struct DeleteLink { |
| 456 | pub actor_id: String, |
| 457 | pub id: ExternalId, |
| 458 | pub date: Timestamp, |
| 459 | pub deleted_link: LinkInfo, |
| 460 | pub parent_topics: TopicInfoList, |
| 461 | } |
| 462 | |
| 463 | impl DeleteLink { |
| 464 | fn ids(&self) -> HashSet<&ExternalId> { |