tinkoff_api/models/
trade_status.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#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
14pub enum TradeStatus {
15    #[serde(rename = "NormalTrading")]
16    NormalTrading,
17    #[serde(rename = "NotAvailableForTrading")]
18    NotAvailableForTrading,
19
20}
21
22
23
24