From af6a6755acc36c0b3631800462d9e64a55cc1ed1 Mon Sep 17 00:00:00 2001 From: jellejurre Date: Tue, 19 Nov 2024 14:03:07 +0100 Subject: [PATCH] Add IsGiftDrop to Subscription --- openapi/components/schemas/UserSubscription.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openapi/components/schemas/UserSubscription.yaml b/openapi/components/schemas/UserSubscription.yaml index 43096942..9141c96b 100644 --- a/openapi/components/schemas/UserSubscription.yaml +++ b/openapi/components/schemas/UserSubscription.yaml @@ -50,6 +50,9 @@ properties: isGift: type: boolean default: false + isGiftDrop: + type: boolean + default: false required: - id - transactionId @@ -65,4 +68,5 @@ required: - updated_at - licenseGroups - isGift + - isGiftDrop title: UserSubscription