whisky_provider/maestro/models/
last_updated.rs

1use serde::Deserialize;
2
3#[derive(Deserialize, Debug, Clone)]
4pub struct LastUpdated {
5    pub block_hash: String,
6    pub block_slot: i64,
7    pub timestamp: String,
8}