neo3/neo_protocol/responses/
neo_address.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, Hash, Debug)]
4pub struct NeoAddress {
5	pub address: String,
6	#[serde(rename = "haskey")]
7	pub has_key: bool,
8
9	pub label: Option<String>,
10	#[serde(rename = "watchonly")]
11	pub watch_only: bool,
12}