summaryrefslogtreecommitdiff
path: root/wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-12-05 13:01:40 -0600
committerIván Ávalos <avalos@disroot.org>2024-01-08 14:45:46 -0600
commit8936e2d7adf6bd25a2cacdc18dc9e31db1cec8d2 (patch)
treebe0b4b4baf4f65f6a49ea4097acf3d12f207c90b /wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt
parentbdd47e0bf1e6491078de84b684476adbc055ec42 (diff)
downloadtaler-android-8936e2d7adf6bd25a2cacdc18dc9e31db1cec8d2.tar.gz
taler-android-8936e2d7adf6bd25a2cacdc18dc9e31db1cec8d2.tar.bz2
taler-android-8936e2d7adf6bd25a2cacdc18dc9e31db1cec8d2.zip
[wallet] Initial implementation of DD36.
Diffstat (limited to 'wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt')
-rw-r--r--wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt28
1 files changed, 28 insertions, 0 deletions
diff --git a/wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt b/wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt
new file mode 100644
index 0000000..2297c21
--- /dev/null
+++ b/wallet/src/main/java/net/taler/wallet/balances/CurrencySpecification.kt
@@ -0,0 +1,28 @@
+/*
+ * This file is part of GNU Taler
+ * (C) 2023 Taler Systems S.A.
+ *
+ * GNU Taler is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 3, or (at your option) any later version.
+ *
+ * GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ */
+
+package net.taler.wallet.balances
+
+import kotlinx.serialization.Serializable
+
+@Serializable
+data class CurrencySpecification(
+ val name: String,
+ val numFractionalInputDigits: Int,
+ val numFractionalNormalDigits: Int,
+ val numFractionalTrailingZeroDigits: Int,
+ val altUnitNames: Map<String, String>,
+) \ No newline at end of file