2022-11-12 13:52:57 +00:00
|
|
|
use crate::objects::person::ApubPerson;
|
2022-06-02 14:33:41 +00:00
|
|
|
use activitypub_federation::{core::object_id::ObjectId, deser::helpers::deserialize_one_or_many};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::activity::RemoveType;
|
2021-10-29 10:32:42 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use url::Url;
|
|
|
|
|
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 RemoveMod {
|
|
|
|
pub(crate) actor: ObjectId<ApubPerson>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many")]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) to: Vec<Url>,
|
|
|
|
pub(crate) object: ObjectId<ApubPerson>,
|
2022-06-02 14:33:41 +00:00
|
|
|
#[serde(deserialize_with = "deserialize_one_or_many")]
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: RemoveType,
|
|
|
|
pub(crate) target: Url,
|
|
|
|
pub(crate) id: Url,
|
|
|
|
}
|