binance-sdk 44.0.1

This is a lightweight library that works as a connector to the Binance public API.
/*
 * Binance Spot REST API
 *
 * OpenAPI Specifications for the Binance Spot REST API
 *
 * API documents:
 * - [Github rest-api documentation file](https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md)
 * - [General API information for rest-api on website](https://developers.binance.com/docs/binance-spot-api-docs/rest-api/general-api-information)
 *
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

#![allow(unused_imports)]
use crate::spot::rest_api::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct MyPreventedMatchesResponseInner {
    #[serde(rename = "symbol", skip_serializing_if = "Option::is_none")]
    pub symbol: Option<String>,
    #[serde(rename = "preventedMatchId", skip_serializing_if = "Option::is_none")]
    pub prevented_match_id: Option<i64>,
    #[serde(rename = "takerOrderId", skip_serializing_if = "Option::is_none")]
    pub taker_order_id: Option<i64>,
    #[serde(rename = "makerSymbol", skip_serializing_if = "Option::is_none")]
    pub maker_symbol: Option<String>,
    #[serde(rename = "makerOrderId", skip_serializing_if = "Option::is_none")]
    pub maker_order_id: Option<i64>,
    #[serde(rename = "tradeGroupId", skip_serializing_if = "Option::is_none")]
    pub trade_group_id: Option<i64>,
    #[serde(
        rename = "selfTradePreventionMode",
        skip_serializing_if = "Option::is_none"
    )]
    pub self_trade_prevention_mode: Option<String>,
    #[serde(rename = "price", skip_serializing_if = "Option::is_none")]
    pub price: Option<String>,
    #[serde(
        rename = "makerPreventedQuantity",
        skip_serializing_if = "Option::is_none"
    )]
    pub maker_prevented_quantity: Option<String>,
    #[serde(rename = "transactTime", skip_serializing_if = "Option::is_none")]
    pub transact_time: Option<i64>,
}

impl MyPreventedMatchesResponseInner {
    #[must_use]
    pub fn new() -> MyPreventedMatchesResponseInner {
        MyPreventedMatchesResponseInner {
            symbol: None,
            prevented_match_id: None,
            taker_order_id: None,
            maker_symbol: None,
            maker_order_id: None,
            trade_group_id: None,
            self_trade_prevention_mode: None,
            price: None,
            maker_prevented_quantity: None,
            transact_time: None,
        }
    }
}