openxapi-binance 0.2.0

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

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetManagedSubaccountInfoV1Resp {
    #[serde(rename = "managerSubUserInfoVoList", skip_serializing_if = "Option::is_none")]
    pub manager_sub_user_info_vo_list: Option<Vec<models::GetManagedSubaccountInfoV1RespManagerSubUserInfoVoListInner>>,
    #[serde(rename = "total", skip_serializing_if = "Option::is_none")]
    pub total: Option<i32>,
}

impl GetManagedSubaccountInfoV1Resp {
    pub fn new() -> GetManagedSubaccountInfoV1Resp {
        GetManagedSubaccountInfoV1Resp {
            manager_sub_user_info_vo_list: None,
            total: None,
        }
    }
}