aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/currency_format.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-07 03:57:33 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-07 03:57:33 -0500
commita942c7c8e17eb829ef1581c0b556665784f19e33 (patch)
treeff391dc8d22860009bd06f77042cb74d6eb6c1f2 /src/models/currency_format.rs
parent4c94e5f9101c14bfc5c6989d11ea6c855c809f0b (diff)
downloadynab-api-a942c7c8e17eb829ef1581c0b556665784f19e33.tar.gz
ynab-api-a942c7c8e17eb829ef1581c0b556665784f19e33.zip
update openapi spec and regenerate with newer openapi-generator
the newer openapi-generator picks up fixes for optional parameters, among other things
Diffstat (limited to 'src/models/currency_format.rs')
-rw-r--r--src/models/currency_format.rs17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/models/currency_format.rs b/src/models/currency_format.rs
index 8831679..44a99aa 100644
--- a/src/models/currency_format.rs
+++ b/src/models/currency_format.rs
@@ -11,6 +11,7 @@
/// CurrencyFormat : The currency format setting for the budget. In some cases the format will not be available and will be specified as null.
+
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct CurrencyFormat {
#[serde(rename = "iso_code")]
@@ -35,14 +36,14 @@ impl CurrencyFormat {
/// The currency format setting for the budget. In some cases the format will not be available and will be specified as null.
pub fn new(iso_code: String, example_format: String, decimal_digits: i32, decimal_separator: String, symbol_first: bool, group_separator: String, currency_symbol: String, display_symbol: bool) -> CurrencyFormat {
CurrencyFormat {
- iso_code: iso_code,
- example_format: example_format,
- decimal_digits: decimal_digits,
- decimal_separator: decimal_separator,
- symbol_first: symbol_first,
- group_separator: group_separator,
- currency_symbol: currency_symbol,
- display_symbol: display_symbol,
+ iso_code,
+ example_format,
+ decimal_digits,
+ decimal_separator,
+ symbol_first,
+ group_separator,
+ currency_symbol,
+ display_symbol,
}
}
}