commit e44c9f6b7ed5cf4ad8a621aadc7a105faf14b18e
parent 73ae19544b21e81bbe24ea835131e0fba305f9e0
Author: Christian Blättler <blatc2@bfh.ch>
Date: Tue, 21 Nov 2023 08:20:23 +0100
better naming for validity range
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -3722,10 +3722,10 @@ Creating token families
// Start time of the token family's validity period.
// If not specified, merchant backend will use the current time.
- start_time?: Timestamp;
+ valid_after?: Timestamp;
// End time of the token family's validity period.
- expiration_time: Timestamp;
+ valid_before: Timestamp;
// Validity duration of an issued token.
duration: RelativeTime;
@@ -3781,10 +3781,10 @@ Updating token families
description_i18n: { [lang_tag: string]: string };
// Start time of the token family's validity period.
- start_time: Timestamp;
+ valid_after: Timestamp;
// End time of the token family's validity period.
- expiration_time: Timestamp;
+ valid_before: Timestamp;
// Validity duration of an issued token.
duration: RelativeTime;
@@ -3836,10 +3836,10 @@ Inspecting token families
name: string;
// Start time of the token family's validity period.
- start_time: Timestamp;
+ valid_after: Timestamp;
// End time of the token family's validity period.
- expiration: Timestamp;
+ valid_before: Timestamp;
}
@@ -3877,10 +3877,10 @@ Inspecting token families
description_i18n?: { [lang_tag: string]: string };
// Start time of the token family's validity period.
- start_time: Timestamp;
+ valid_after: Timestamp;
// End time of the token family's validity period.
- expiration: Timestamp;
+ valid_before: Timestamp;
// Validity duration of an issued token.
duration: RelativeTime;