/*
* Binance Wallet API
*
* OpenAPI specification for Binance exchange - Wallet API
*
* The version of the OpenAPI document: 0.1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::wallet::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WalletGetAccountStatusV1Resp {
#[serde(rename = "data", skip_serializing_if = "Option::is_none")]
pub data: Option<String>,
}
impl WalletGetAccountStatusV1Resp {
pub fn new() -> WalletGetAccountStatusV1Resp {
WalletGetAccountStatusV1Resp {
data: None,
}
}
}