tinkoff_api/models/
sandbox_register_request.rs

1/*
2 * OpenAPI
3 *
4 * tinkoff.ru/invest OpenAPI.
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * Contact: al.a.volkov@tinkoff.ru
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SandboxRegisterRequest {
16    #[serde(rename = "brokerAccountType", skip_serializing_if = "Option::is_none")]
17    pub broker_account_type: Option<crate::models::BrokerAccountType>,
18}
19
20impl SandboxRegisterRequest {
21    pub fn new() -> SandboxRegisterRequest {
22        SandboxRegisterRequest {
23            broker_account_type: None,
24        }
25    }
26}
27
28