tinkoff_api/models/operation_type.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 OperationType {
15 #[serde(rename = "Buy")]
16 Buy,
17 #[serde(rename = "Sell")]
18 Sell,
19
20}
21
22
23
24