ynab_api_async_fork/models/transaction_cleared_status.rs
1/*
2 * YNAB API Endpoints
3 *
4 * Our API uses a REST based design, leverages the JSON data format, and relies upon HTTPS for transport. We respond with meaningful HTTP response codes and if an error occurs, we include error details in the response body. API Documentation is at https://api.ynab.com
5 *
6 * The version of the OpenAPI document: 1.72.1
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11/// TransactionClearedStatus : The cleared status of the transaction
12
13/// The cleared status of the transaction
14#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
15pub enum TransactionClearedStatus {
16 #[serde(rename = "cleared")]
17 Cleared,
18 #[serde(rename = "uncleared")]
19 Uncleared,
20 #[serde(rename = "reconciled")]
21 Reconciled,
22
23}
24
25
26
27