2021-10-29 10:32:42 +00:00
|
|
|
use crate::{
|
|
|
|
activity_lists::AnnouncableActivities,
|
|
|
|
fetcher::object_id::ObjectId,
|
|
|
|
objects::community::ApubCommunity,
|
|
|
|
};
|
|
|
|
use activitystreams::{activity::kind::AnnounceType, unparsed::Unparsed};
|
|
|
|
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 AnnounceActivity {
|
|
|
|
pub(crate) actor: ObjectId<ApubCommunity>,
|
|
|
|
pub(crate) to: Vec<Url>,
|
|
|
|
pub(crate) object: AnnouncableActivities,
|
|
|
|
pub(crate) cc: Vec<Url>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: AnnounceType,
|
|
|
|
pub(crate) id: Url,
|
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) unparsed: Unparsed,
|
|
|
|
}
|