use crate::cmfutures::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetConstituentsV1RespConstituentsInner {
#[serde(rename = "exchange", skip_serializing_if = "Option::is_none")]
pub exchange: Option<String>,
#[serde(rename = "symbol", skip_serializing_if = "Option::is_none")]
pub symbol: Option<String>,
}
impl GetConstituentsV1RespConstituentsInner {
pub fn new() -> GetConstituentsV1RespConstituentsInner {
GetConstituentsV1RespConstituentsInner {
exchange: None,
symbol: None,
}
}
}