/*
* moon-vault-api
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct AccountData {
#[serde(rename = "keys", skip_serializing_if = "Option::is_none")]
pub keys: Option<Vec<String>>,
#[serde(rename = "address", skip_serializing_if = "Option::is_none")]
pub address: Option<String>,
}
impl AccountData {
pub fn new() -> AccountData {
AccountData {
keys: None,
address: None,
}
}
}