taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 874e88f0601d3b41205c62ab009e370b33dfdc80
parent a8f063a61ebb23ae7a58156e79c81646dddfb936
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu,  9 Apr 2020 14:30:43 +0530

fees

Diffstat:
Mdesign-documents/002-wallet-exchange-management.rst | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/design-documents/002-wallet-exchange-management.rst b/design-documents/002-wallet-exchange-management.rst @@ -176,9 +176,10 @@ Response: // Is this exchange the default exchange for this withdrawal? isDefault: boolean; - // The "reasonable-ness" of the exchange's fees, in context - // of the withdrawn amount. - feeStructureSummaryForAmount: FeeStructureSummaryForAmount; + withdrawalWithdrawnAmount: Amount; + withdrawalCreditAmount: Amount; + withdrawalFeeAmount: Amount; + withdrawalOverheadAmount: Amount; }; } @@ -312,11 +313,10 @@ Response: // Is this exchange the default exchange for this withdrawal? isDefault: boolean; - // The "reasonable-ness" of the exchange's fees, in context - // of the withdrawn amount. - // Only provided if available (if we've already queried - // and checked this exchange before). - feeStructureSummaryForAmount: FeeStructureSummaryForAmount | undefined; + withdrawalWithdrawnAmount: Amount; + withdrawalCreditAmount: Amount; + withdrawalFeeAmount: Amount; + withdrawalOverheadAmount: Amount; }; }[]; }