| 64 | |
| 65 | #[derive(CandidType, serde::Serialize, Deserialize, Debug, Clone)] |
| 66 | pub struct Snapshot { |
| 67 | pub snapshot_id: String, |
| 68 | pub taken_at_timestamp: TimestampRfc3339, |
| 69 | pub total_size: u64, |
| 70 | } |
| 71 | |
| 72 | impl From<mgmt::Snapshot> for Snapshot { |
| 73 | fn from(snapshot: mgmt::Snapshot) -> Snapshot { |