openxapi-binance 0.2.0

Rust client for Binance API
Documentation
/*
 * 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 CreateLocalentityWithdrawApplyV1Resp {
    #[serde(rename = "accpted", skip_serializing_if = "Option::is_none")]
    pub accpted: Option<bool>,
    #[serde(rename = "info", skip_serializing_if = "Option::is_none")]
    pub info: Option<String>,
    #[serde(rename = "trId", skip_serializing_if = "Option::is_none")]
    pub tr_id: Option<i64>,
}

impl CreateLocalentityWithdrawApplyV1Resp {
    pub fn new() -> CreateLocalentityWithdrawApplyV1Resp {
        CreateLocalentityWithdrawApplyV1Resp {
            accpted: None,
            info: None,
            tr_id: None,
        }
    }
}