#[derive(Clone, Debug, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct ConstructionDeriveResponse {
#[serde(rename = "address", skip_serializing_if = "Option::is_none")]
pub address: Option<String>,
#[serde(rename = "account_identifier", skip_serializing_if = "Option::is_none")]
pub account_identifier: Option<crate::AccountIdentifier>,
#[serde(rename = "metadata", skip_serializing_if = "Option::is_none")]
pub metadata: Option<serde_json::Value>,
}
impl ConstructionDeriveResponse {
pub fn new() -> ConstructionDeriveResponse {
ConstructionDeriveResponse {
address: None,
account_identifier: None,
metadata: None,
}
}
}