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
use serde::Deserialize;

#[derive(Deserialize, Debug, Clone)]
pub struct AppLogsResponseAll {
    pub apps: Vec<AppLogs>,
    pub message: String,
    pub status: String,
}

#[derive(Deserialize, Debug, Clone)]
pub struct AppLogsResponseUnique {
    pub apps: AppLogs,
    pub message: String,
    pub status: String,
}

#[derive(Deserialize, Debug, Clone)]
pub struct AppLogs {
    pub id: String,
    pub terminal: AppLogsTerminal,
}

#[derive(Deserialize, Debug, Clone)]
pub struct AppLogsTerminal {
    pub big: Option<String>,
    pub small: Option<String>,
    pub url: String,
}