taler-docs

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

commit b2deb4dcc3b09d40479573bde10e32e05971016b
parent 471480dba599ad490812075427f9d2813d5d5e74
Author: Jonathan Buchanan <jonathan.russ.buchanan@gmail.com>
Date:   Fri, 24 Jul 2020 21:01:26 -0400

expand information returned in merchant GET /private/orders

Diffstat:
Mcore/api-merchant.rst | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -811,6 +811,17 @@ Payment processing // order ID of the transaction related to this entry. order_id: string; + // row ID of the order in the database + row_id: number; + + // when the order was created + timestamp: Timestamp; + + // the amount of money the order is for + amount: Amount; + + // the summary of the order + summary: string; }