Skip to main content

binance_sdk/fiat/rest_api/models/
deposit_response_data.rs

1/*
2 * Binance Fiat REST API
3 *
4 * OpenAPI Specification for the Binance Fiat REST API
5 *
6 * The version of the OpenAPI document: 1.0.0
7 *
8 *
9 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10 * https://openapi-generator.tech
11 * Do not edit the class manually.
12 */
13
14#![allow(unused_imports)]
15use crate::fiat::rest_api::models;
16use serde::{Deserialize, Serialize};
17
18#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
19pub struct DepositResponseData {
20    #[serde(rename = "orderId", skip_serializing_if = "Option::is_none")]
21    pub order_id: Option<String>,
22}
23
24impl DepositResponseData {
25    #[must_use]
26    pub fn new() -> DepositResponseData {
27        DepositResponseData { order_id: None }
28    }
29}