tinkoff_api/models/
operation_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/// OperationStatus : Статус заявки
12
13/// Статус заявки
14#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
15pub enum OperationStatus {
16    #[serde(rename = "Done")]
17    Done,
18    #[serde(rename = "Decline")]
19    Decline,
20    #[serde(rename = "Progress")]
21    Progress,
22
23}
24
25
26
27