2021-11-19 17:47:06 +00:00
|
|
|
use crate::{
|
|
|
|
objects::person::ApubPerson,
|
|
|
|
protocol::{activities::voting::vote::Vote, Unparsed},
|
|
|
|
};
|
|
|
|
use activitystreams_kinds::activity::UndoType;
|
2021-11-05 00:24:10 +00:00
|
|
|
use lemmy_apub_lib::object_id::ObjectId;
|
2021-11-03 17:33:51 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use url::Url;
|
2021-10-29 10:32:42 +00:00
|
|
|
|
2021-11-03 17:33:51 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2021-10-29 10:32:42 +00:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct UndoVote {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
2021-11-27 04:55:33 +00:00
|
|
|
#[serde(deserialize_with = "crate::deserialize_one_or_many")]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) to: Vec<Url>,
|
|
|
|
pub(crate) object: Vote,
|
2021-11-27 04:55:33 +00:00
|
|
|
#[serde(deserialize_with = "crate::deserialize_one_or_many")]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: UndoType,
|
|
|
|
pub(crate) id: Url,
|
2022-02-17 22:04:01 +00:00
|
|
|
|
2021-10-29 10:32:42 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) unparsed: Unparsed,
|
|
|
|
}
|