ib_client/models/
inline_object_5.rs

1/*
2 * Client Portal Web API
3 *
4 * Client Portal Web API
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct InlineObject5 {
16    /// answer to question, true means yes, false means no
17    #[serde(rename = "confirmed", skip_serializing_if = "Option::is_none")]
18    pub confirmed: Option<bool>,
19}
20
21impl InlineObject5 {
22    pub fn new() -> InlineObject5 {
23        InlineObject5 {
24            confirmed: None,
25        }
26    }
27}
28
29