discloud_rs/app/
backup.rs

1use serde::Deserialize;
2
3#[derive(Deserialize, Debug, Clone)]
4pub struct AppBackupResponseUnique {
5    pub backups: AppBackup,
6    pub message: String,
7    pub status: String,
8}
9
10#[derive(Deserialize, Debug, Clone)]
11pub struct AppBackupResponseAll {
12    pub backups: Vec<AppBackup>,
13    pub message: String,
14    pub status: String,
15}
16
17#[derive(Deserialize, Debug, Clone)]
18pub struct AppBackup {
19    pub id: String,
20    pub url: String,
21}