discloud_rs/app/
logs.rs

1use serde::Deserialize;
2
3#[derive(Deserialize, Debug, Clone)]
4pub struct AppLogsResponseAll {
5    pub apps: Vec<AppLogs>,
6    pub message: String,
7    pub status: String,
8}
9
10#[derive(Deserialize, Debug, Clone)]
11pub struct AppLogsResponseUnique {
12    pub apps: AppLogs,
13    pub message: String,
14    pub status: String,
15}
16
17#[derive(Deserialize, Debug, Clone)]
18pub struct AppLogs {
19    pub id: String,
20    pub terminal: AppLogsTerminal,
21}
22
23#[derive(Deserialize, Debug, Clone)]
24pub struct AppLogsTerminal {
25    pub big: Option<String>,
26    pub small: Option<String>,
27    pub url: String,
28}