You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/crates/apub/src/protocol/collections/group_followers.rs

13 lines
354 B
Rust

use activitypub_federation::kinds::collection::CollectionType;
use serde::{Deserialize, Serialize};
use url::Url;
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct GroupFollowers {
pub(crate) id: Url,
pub(crate) r#type: CollectionType,
pub(crate) total_items: i32,
pub(crate) items: Vec<()>,
}