/*
* Firefly III API v6.4.14
*
* This is the documentation of the Firefly III API. Please report any bugs or issues. You may use the \"Authorize\" button to try the API below. <br><br> Please keep in mind that the demo site does **not** accept requests from `curl`, `colly`, `wget`, etc. You must use a browser or a tool like Insomnia to make your test requests. <br><br> To learn more about the idiosyncrasies of this API, please read about the API in the [Firefly III API documentation](https://docs.firefly-iii.org/references/firefly-iii/api/). <br><br> <small>This file was last generated on 2025-12-26 @ 15:17:41 (Europe/Amsterdam)</small>
*
* The version of the OpenAPI document: v6.4.14
* Contact: james@firefly-iii.org
* Generated by: https://openapi-generator.tech
*/
#![allow(unused_imports)]
use crate::models::{self, *};
use std::fmt;
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct CurrencyExchangeRateUpdate {
/// The date to which the exchange rate is applicable.
#[serde(rename = "date")]
pub date: String,
/// The exchange rate from the base currency to the destination currency.
#[serde(rename = "rate")]
pub rate: String,
/// The base currency code.
#[serde(rename = "from", skip_serializing_if = "Option::is_none")]
pub from: Option<String>,
/// The destination currency code.
#[serde(rename = "to", skip_serializing_if = "Option::is_none")]
pub to: Option<String>,
}
impl CurrencyExchangeRateUpdate {
pub fn new(date: String, rate: String) -> CurrencyExchangeRateUpdate {
CurrencyExchangeRateUpdate {
date,
rate,
from: None,
to: None,
}
}
}
impl fmt::Display for CurrencyExchangeRateUpdate {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match serde_json::to_string(self) {
Ok(json) => write!(f, "{}", json),
Err(_) => write!(f, "{{{{}}}}"),
}
}
}