]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/activities/following/undo_follow.rs
38306b7c13696a9177e4935a8a255cd7dc8a3909
[lemmy.git] / crates / apub / src / protocol / activities / following / undo_follow.rs
1 use crate::{
2   objects::person::ApubPerson,
3   protocol::{activities::following::follow::FollowCommunity, Unparsed},
4 };
5 use activitypub_federation::core::object_id::ObjectId;
6 use activitystreams_kinds::activity::UndoType;
7 use serde::{Deserialize, Serialize};
8 use url::Url;
9
10 #[derive(Clone, Debug, Deserialize, Serialize)]
11 #[serde(rename_all = "camelCase")]
12 pub struct UndoFollowCommunity {
13   pub(crate) actor: ObjectId<ApubPerson>,
14   pub(crate) object: FollowCommunity,
15   #[serde(rename = "type")]
16   pub(crate) kind: UndoType,
17   pub(crate) id: Url,
18
19   #[serde(flatten)]
20   pub(crate) unparsed: Unparsed,
21 }