commit c983426fabe4049d84133f7e982d6e34c7e912e5
parent 4c576832413d8a0877db34a51624193d3a7d7c49
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 28 Mar 2025 14:09:51 +0100
fix indent
Diffstat:
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -1442,7 +1442,7 @@ Getting statistics
.. ts:def:: MerchantStatisticAmountByBucket
- interface MerchantStatisticAmountByBucket {
+ interface MerchantStatisticAmountByBucket {
// Start time of the bucket (inclusive)
start_time: Timestamp;
@@ -1461,7 +1461,7 @@ Getting statistics
.. ts:def:: MerchantStatisticAmountByInterval
- interface MerchantStatisticAmountByInterval {
+ interface MerchantStatisticAmountByInterval {
// Start time of the interval.
// The interval always ends at the response
@@ -1513,18 +1513,18 @@ Getting statistics
interface MerchantStatisticCounterByBucket {
- // Start time of the bucket (inclusive)
- start_time: Timestamp;
+ // Start time of the bucket (inclusive)
+ start_time: Timestamp;
- // End time of the bucket (exclusive)
- end_time: Timestamp;
+ // End time of the bucket (exclusive)
+ end_time: Timestamp;
- // Range of the bucket
- range: StatisticBucketRange;
+ // Range of the bucket
+ range: StatisticBucketRange;
- // Sum of all counters falling under the given
- // SLUG within this timeframe.
- cumulative_counter: number;
+ // Sum of all counters falling under the given
+ // SLUG within this timeframe.
+ cumulative_counter: number;
}
@@ -1532,14 +1532,14 @@ Getting statistics
interface MerchantStatisticCounterByInterval {
- // Start time of the interval.
- // The interval always ends at the response
- // generation time.
- start_time: Timestamp;
+ // Start time of the interval.
+ // The interval always ends at the response
+ // generation time.
+ start_time: Timestamp;
- // Sum of all counters falling under the given
- // SLUG within this timeframe.
- cumulative_counter: number;
+ // Sum of all counters falling under the given
+ // SLUG within this timeframe.
+ cumulative_counter: number;
}