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