Skip to main content

paperless_api/
group.rs

1//! Types related to groups.
2
3use serde::Deserialize;
4
5/// A paperless group
6#[derive(Debug, Clone, Deserialize)]
7pub struct Group {
8    /// Unique identifier of the group.
9    pub id: crate::id::GroupId,
10
11    /// The name of the group.
12    pub name: String,
13}