use crate::objects::person::ApubPerson; use activitypub_federation::{ fetch::object_id::ObjectId, kinds::activity::DeleteType, protocol::helpers::deserialize_one_or_many, }; use serde::{Deserialize, Serialize}; use serde_with::skip_serializing_none; use url::Url; #[skip_serializing_none] #[derive(Clone, Debug, Deserialize, Serialize)] #[serde(rename_all = "camelCase")] pub struct DeleteUser { pub(crate) actor: ObjectId, #[serde(deserialize_with = "deserialize_one_or_many")] pub(crate) to: Vec, pub(crate) object: ObjectId, #[serde(rename = "type")] pub(crate) kind: DeleteType, pub(crate) id: Url, #[serde(deserialize_with = "deserialize_one_or_many", default)] #[serde(skip_serializing_if = "Vec::is_empty")] pub(crate) cc: Vec, /// Nonstandard field. If present, all content from the user should be deleted along with the account pub(crate) remove_data: Option, }