1 2 3 4 5 6 7 8 9 10
use crate::models::Hnt; use serde::{Deserialize, Serialize}; #[derive(Clone, Serialize, Deserialize, Debug)] pub struct Reward { pub account: Option<String>, pub amount: Hnt, pub gateway: Option<String>, pub r#type: String, }