aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/http-client/types.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2024-06-16 12:04:44 -0300
committerSebastian <sebasjm@gmail.com>2024-06-16 12:04:44 -0300
commit1e2d09017fd5bd0a8b5def8a30f5a7c07e8a7156 (patch)
treea6a04bebfbba57435ce1d429743a841533792e2c /packages/taler-util/src/http-client/types.ts
parent4ca0466c1a766905043343cd1716a09b3c2d4b9a (diff)
downloadwallet-core-1e2d09017fd5bd0a8b5def8a30f5a7c07e8a7156.tar.xz
addressing 976ef6296: showing withdrawal info when amount is suggested
Diffstat (limited to 'packages/taler-util/src/http-client/types.ts')
-rw-r--r--packages/taler-util/src/http-client/types.ts13
1 files changed, 6 insertions, 7 deletions
diff --git a/packages/taler-util/src/http-client/types.ts b/packages/taler-util/src/http-client/types.ts
index a5659954d..9024a95d0 100644
--- a/packages/taler-util/src/http-client/types.ts
+++ b/packages/taler-util/src/http-client/types.ts
@@ -2208,13 +2208,6 @@ export namespace TalerCorebankApi {
// still change the suggestion.
// @since **vC2EC**
suggested_amount?: AmountString;
-
- // The non-Taler card fees the customer will have
- // to pay to the account owner, bank and/or
- // payment service provider
- // they are using to make this withdrawal.
- // @since **vC2EC**
- card_fees?: AmountString;
}
export interface BankAccountCreateWithdrawalResponse {
@@ -2236,6 +2229,12 @@ export namespace TalerCorebankApi {
// (raw amount without fee considerations).
amount?: AmountString;
+ // Suggestion for the amount to be withdrawn with this
+ // operation. Given if a suggestion was made but the
+ // user may still change the amount.
+ // Optional since **vC2EC**.
+ suggested_amount?: AmountString;
+
// Account username
username: string;