paperless-api 0.7.0

Async Paperless ngx API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Types related to groups.

use serde::Deserialize;

/// A paperless group
#[derive(Debug, Clone, Deserialize)]
pub struct Group {
    /// Unique identifier of the group.
    pub id: crate::id::GroupId,

    /// The name of the group.
    pub name: String,
}