]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/activities/community/remove_mod.rs
Reorganize federation tests (#2092)
[lemmy.git] / crates / apub / src / protocol / activities / community / remove_mod.rs
1 use crate::{objects::person::ApubPerson, protocol::Unparsed};
2 use activitystreams_kinds::activity::RemoveType;
3 use lemmy_apub_lib::object_id::ObjectId;
4 use serde::{Deserialize, Serialize};
5 use url::Url;
6
7 #[derive(Clone, Debug, Deserialize, Serialize)]
8 #[serde(rename_all = "camelCase")]
9 pub struct RemoveMod {
10   pub(crate) actor: ObjectId<ApubPerson>,
11   #[serde(deserialize_with = "crate::deserialize_one_or_many")]
12   pub(crate) to: Vec<Url>,
13   pub(crate) object: ObjectId<ApubPerson>,
14   #[serde(deserialize_with = "crate::deserialize_one_or_many")]
15   pub(crate) cc: Vec<Url>,
16   #[serde(rename = "type")]
17   pub(crate) kind: RemoveType,
18   pub(crate) target: Url,
19   pub(crate) id: Url,
20
21   #[serde(flatten)]
22   pub(crate) unparsed: Unparsed,
23 }