binance/pmargin/models/create_auto_collection_v1_resp.rs
1/*
2 * Binance Portfolio Margin API
3 *
4 * OpenAPI specification for Binance exchange - Pmargin API
5 *
6 * The version of the OpenAPI document: 0.3.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::pmargin::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct CreateAutoCollectionV1Resp {
16 #[serde(rename = "msg", skip_serializing_if = "Option::is_none")]
17 pub msg: Option<String>,
18}
19
20impl CreateAutoCollectionV1Resp {
21 pub fn new() -> CreateAutoCollectionV1Resp {
22 CreateAutoCollectionV1Resp {
23 msg: None,
24 }
25 }
26}
27