commit d1ca7adb3c2ab2048d05fc26c8e06c2297500f42
parent fbcc74755c0900ab4c4b89891dd22ec052c43011
Author: Florian Dold <florian@dold.me>
Date: Fri, 24 May 2024 12:02:19 +0200
bank integration API: currency field
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/core/api-bank-integration.rst b/core/api-bank-integration.rst
@@ -107,6 +107,11 @@ for the withdrawal operation (the ``WITHDRAWAL_ID``) to interact with the withdr
// @since **v1**
status: "pending" | "selected" | "aborted" | "confirmed";
+ // Currency used for the withdrawal.
+ // MUST be present when amount is absent.
+ // @since v2, may become mandatory in the future.
+ currency?: string;
+
// Amount that will be withdrawn with this operation
// (raw amount without fee considerations). Only
// given once the amount is fixed and cannot be changed.