]> Untitled Git - lemmy.git/blob - crates/apub/src/protocol/activities/private_message/create_or_update.rs
a319daff5a545285753e2ed87797e508afef67b0
[lemmy.git] / crates / apub / src / protocol / activities / private_message / create_or_update.rs
1 use crate::{
2   objects::person::ApubPerson,
3   protocol::{activities::CreateOrUpdateType, objects::chat_message::ChatMessage, Unparsed},
4 };
5 use lemmy_apub_lib::object_id::ObjectId;
6 use serde::{Deserialize, Serialize};
7 use url::Url;
8
9 #[derive(Clone, Debug, Deserialize, Serialize)]
10 #[serde(rename_all = "camelCase")]
11 pub struct CreateOrUpdatePrivateMessage {
12   pub(crate) id: Url,
13   pub(crate) actor: ObjectId<ApubPerson>,
14   pub(crate) to: [ObjectId<ApubPerson>; 1],
15   pub(crate) object: ChatMessage,
16   #[serde(rename = "type")]
17   pub(crate) kind: CreateOrUpdateType,
18   #[serde(flatten)]
19   pub(crate) unparsed: Unparsed,
20 }