whisky_provider/maestro/models/
address.rs

1use serde::Deserialize;
2
3// use crate::provider::maestro::utils::last_updated::LastUpdated;
4
5use super::utxo::Utxo;
6
7#[derive(Deserialize, Debug, Clone)]
8pub struct UtxosAtAddress {
9    pub data: Vec<Utxo>,
10    // pub last_updated: LastUpdated,
11    pub next_cursor: Option<String>,
12}