From 02966ecd9547b223c8df1c47151581c96fc7c21d Mon Sep 17 00:00:00 2001 From: Craig Edwards Date: Thu, 13 Jun 2024 21:34:02 +0000 Subject: [PATCH] missing SKu types --- include/dpp/sku.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/dpp/sku.h b/include/dpp/sku.h index ef4046ef72..f9d7c03908 100644 --- a/include/dpp/sku.h +++ b/include/dpp/sku.h @@ -34,6 +34,14 @@ namespace dpp { * @brief The type of SKU. * */ enum sku_type : uint8_t { + /** + * @brief Represents a durable one-time purchase + */ + DURABLE = 2, + /** + * @brief Consumable one-time purchase + */ + CONSUMABLE = 3, /** * @brief Represents a recurring subscription */