1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use serde::Deserialize;

#[derive(Deserialize, Debug, Clone)]
pub struct AppBackupResponseUnique {
    pub backups: AppBackup,
    pub message: String,
    pub status: String,
}

#[derive(Deserialize, Debug, Clone)]
pub struct AppBackupResponseAll {
    pub backups: Vec<AppBackup>,
    pub message: String,
    pub status: String,
}

#[derive(Deserialize, Debug, Clone)]
pub struct AppBackup {
    pub id: String,
    pub url: String,
}