openxapi-binance 0.3.0

Rust client for Binance API
Documentation
/*
 * Binance Portfolio Margin API
 *
 * OpenAPI specification for Binance exchange - Pmargin API
 *
 * The version of the OpenAPI document: 0.3.0
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::pmargin::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateRepayFuturesSwitchV1Resp {
    #[serde(rename = "msg", skip_serializing_if = "Option::is_none")]
    pub msg: Option<String>,
}

impl CreateRepayFuturesSwitchV1Resp {
    pub fn new() -> CreateRepayFuturesSwitchV1Resp {
        CreateRepayFuturesSwitchV1Resp {
            msg: None,
        }
    }
}