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