commit c84725208dab853f3eeb10349dedb72d99568161 parent d79b4229c670ba4aa1bc6adddffbd8cbf4ca7800 Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 27 Sep 2025 19:42:28 +0200 fix #10455 Diffstat:
| M | core/api-donau.rst | | | 20 | ++++++++++++++++++-- |
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/core/api-donau.rst b/core/api-donau.rst @@ -595,11 +595,27 @@ The GET status requests require an authorized bearer token as well. .. ts:def:: CharitySummary - interface CharitySummary{ + interface CharitySummary { + + // Unique ID of the charity within the Donau. charity_id: Integer; + + // Public key of the charity, used by the charity to + // authorize issuing donation receipts. charity_pub: EddsaPublicKey; - name: string; + + // Human-readable name of the charity. + charity_name: string; + + // Maximum amount of donation receipts this charity is + // allowed to issue per year. max_per_year: Amount; + + // Year for which ``receipts_to_date`` is given. + current_year: Integer; + + // Total amount of donation receipts the donau has + // issued for this charity so far this year. receipts_to_date: Amount; }