taler-docs

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

commit 65d7d08ff54f4a6c1dc4ab49b8107899126cd205
parent 2f0225baa19f8b8fad884823e9f0dd89161584fd
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Thu,  3 Apr 2025 07:48:22 +0200

Optional statistic descriptions

Diffstat:
Mcore/api-merchant.rst | 12++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -1436,13 +1436,15 @@ Getting statistics buckets: MerchantStatisticAmountByBucket[]; // Human-readable bucket statistic description. - buckets_description: string; + // Unset if no buckets returned + buckets_description?: string; // Statistics kept for a particular sliding interval. intervals: MerchantStatisticAmountByInterval[]; // Human-readable interval statistic description. - intervals_description: string; + // Unset if no buckets returned + intervals_description?: string; } .. ts:def:: MerchantStatisticAmountByBucket @@ -1510,13 +1512,15 @@ Getting statistics buckets: MerchantStatisticCounterByBucket[]; // Human-readable bucket statistic description. - buckets_description: string; + // Unset if no buckets returned + buckets_description?: string; // Statistics kept for a particular sliding interval. intervals: MerchantStatisticCounterByInterval[]; // Human-readable interval statistic description. - intervals_description: string; + // Unset if no intervals returned + intervals_description?: string; }