Skip to main content

binance/spot/models/
create_localentity_withdraw_apply_v1_resp.rs

1/*
2 * Binance Spot API
3 *
4 * OpenAPI specification for Binance exchange - Spot API
5 *
6 * The version of the OpenAPI document: 0.3.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::spot::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct CreateLocalentityWithdrawApplyV1Resp {
16    #[serde(rename = "accpted", skip_serializing_if = "Option::is_none")]
17    pub accpted: Option<bool>,
18    #[serde(rename = "info", skip_serializing_if = "Option::is_none")]
19    pub info: Option<String>,
20    #[serde(rename = "trId", skip_serializing_if = "Option::is_none")]
21    pub tr_id: Option<i64>,
22}
23
24impl CreateLocalentityWithdrawApplyV1Resp {
25    pub fn new() -> CreateLocalentityWithdrawApplyV1Resp {
26        CreateLocalentityWithdrawApplyV1Resp {
27            accpted: None,
28            info: None,
29            tr_id: None,
30        }
31    }
32}
33