binance-sdk 45.0.0

This is a lightweight library that works as a connector to the Binance public API.
/*
 * Binance Staking REST API
 *
 * OpenAPI Specification for the Binance Staking REST API
 *
 * 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::staking::rest_api::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SolStakingAccountResponse {
    #[serde(rename = "bnsolAmount", skip_serializing_if = "Option::is_none")]
    pub bnsol_amount: Option<String>,
    #[serde(rename = "holdingInSOL", skip_serializing_if = "Option::is_none")]
    pub holding_in_sol: Option<String>,
    #[serde(
        rename = "thirtyDaysProfitInSOL",
        skip_serializing_if = "Option::is_none"
    )]
    pub thirty_days_profit_in_sol: Option<String>,
}

impl SolStakingAccountResponse {
    #[must_use]
    pub fn new() -> SolStakingAccountResponse {
        SolStakingAccountResponse {
            bnsol_amount: None,
            holding_in_sol: None,
            thirty_days_profit_in_sol: None,
        }
    }
}