1 2 3 4 5 6 7 8 9 10 11 12 13
use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct Account { pub platform: String, pub address: String, pub driver: String, pub network: String, pub token: String, pub send: bool, pub receive: bool, }