1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use crate::internal::types::LinkType;

// ============ Authorized Apps ==============
// POST /authorized-apps
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CreatedAuthorizedAppType {
    /// The access token issued by the auth server.
    #[serde(default)]
    pub access_token: String,
    /// Desc: The viewer token issued by the auth server.
    #[serde(default)]
    pub viewer_token: String,
    /// Desc: A list of link types and descriptions for the API schema documents.
    #[serde(default)]
    pub _links: Vec<LinkType>,
}

// ============ Authorized App ==============
// GET /authorized-apps/{app_id}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct AuthorizedAppType {
    /// The ID for the application.
    #[serde(default)]
    pub id: u64,
    /// Desc: The name of the application.
    #[serde(default)]
    pub name: String,
    /// Desc: A short description of the application.
    #[serde(default)]
    pub description: String,
    /// Desc: An array of usernames for users who have linked the app.
    #[serde(default)]
    pub users: Vec<String>,
    /// Desc: A list of link types and descriptions for the API schema documents.
    #[serde(default)]
    pub _links: Vec<LinkType>,
}

// ============ Authorized Apps ==============
// GET /authorized-apps
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct AuthorizedAppsType {
    /// An array of objects, each representing an authorized application.
    #[serde(default)]
    pub apps: Vec<AuthorizedAppType>,
    /// Desc: The total number of items matching the query regardless of pagination.
    #[serde(default)]
    pub total_items: i32,
    /// Desc: A list of link types and descriptions for the API schema documents.
    #[serde(default)]
    pub _links: Vec<LinkType>,
}