1 2 3 4 5 6 7 8 9
use crate::rest::model::coin::Method; #[derive(Debug, serde::Serialize, serde::Deserialize)] pub struct Address { pub address: String, pub tag: Option<String>, pub coin: Option<String>, pub method: Option<Method>, }