binance-sdk 61.0.0

This is a lightweight library that works as a connector to the Binance public API.
Documentation
/*
 * Spot WebSocket API
 *
 * Access market data, manage accounts, and trade on Binance Spot.
 *
 * 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::websocket_api::models;
use serde::{Deserialize, Deserializer, Serialize, de::Error};
use serde_json::Value;

/// `AccountCommissionResponseResultDiscount` : Discount on standard commissions when paying in BNB.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct AccountCommissionResponseResultDiscount {
    #[serde(rename = "enabledForAccount", skip_serializing_if = "Option::is_none")]
    pub enabled_for_account: Option<bool>,
    #[serde(rename = "enabledForSymbol", skip_serializing_if = "Option::is_none")]
    pub enabled_for_symbol: Option<bool>,
    #[serde(rename = "discountAsset", skip_serializing_if = "Option::is_none")]
    pub discount_asset: Option<String>,
    /// Standard commission is reduced by this rate when paying commission in BNB.
    #[serde(rename = "discount", skip_serializing_if = "Option::is_none")]
    pub discount: Option<String>,
}

impl AccountCommissionResponseResultDiscount {
    /// Discount on standard commissions when paying in BNB.
    #[must_use]
    pub fn new() -> AccountCommissionResponseResultDiscount {
        AccountCommissionResponseResultDiscount {
            enabled_for_account: None,
            enabled_for_symbol: None,
            discount_asset: None,
            discount: None,
        }
    }
}