commit 89ba2998c2035b7f99cc06ac5430c2c8c8e6fc4e parent 48051ad829dbfba2c58c19eb67f2622fbd2357a6 Author: Christian Grothoff <christian@grothoff.org> Date: Tue, 18 Jan 2022 16:26:42 +0100 add minimum age to products Diffstat:
| M | core/api-merchant.rst | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -1363,6 +1363,9 @@ Adding products to the inventory // Identifies when we expect the next restocking to happen. next_restock?: Timestamp; + // Minimum age buyer must have (in years). Default is 0. + minimum_age?: Integer; + } @@ -1435,6 +1438,9 @@ Adding products to the inventory // Identifies when we expect the next restocking to happen. next_restock?: Timestamp; + // Minimum age buyer must have (in years). Default is 0. + minimum_age?: Integer; + } Inspecting inventory @@ -1526,6 +1532,9 @@ Inspecting inventory // Identifies when we expect the next restocking to happen. next_restock?: Timestamp; + // Minimum age buyer must have (in years). + minimum_age: Integer; + }