summaryrefslogtreecommitdiff
path: root/core/api-merchant.rst
diff options
context:
space:
mode:
authorChristian Blättler <blatc2@bfh.ch>2023-11-21 08:20:23 +0100
committerChristian Blättler <blatc2@bfh.ch>2023-11-21 08:20:23 +0100
commite44c9f6b7ed5cf4ad8a621aadc7a105faf14b18e (patch)
treebe3ff0e98e19ef23b1920f81ba57beaee6af029f /core/api-merchant.rst
parent73ae19544b21e81bbe24ea835131e0fba305f9e0 (diff)
downloaddocs-e44c9f6b7ed5cf4ad8a621aadc7a105faf14b18e.tar.gz
docs-e44c9f6b7ed5cf4ad8a621aadc7a105faf14b18e.tar.bz2
docs-e44c9f6b7ed5cf4ad8a621aadc7a105faf14b18e.zip
better naming for validity range
Diffstat (limited to 'core/api-merchant.rst')
-rw-r--r--core/api-merchant.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 6e1b1f52..c370e297 100644
--- 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;