From aa29cda61f0cf5549199dbd9ef05c29635035dc9 Mon Sep 17 00:00:00 2001 From: jordancco Date: Mon, 25 Mar 2019 14:38:48 +0100 Subject: [PATCH] Update notification.go Added new const NotificationTypeDidChangeRenewalStatus --- appstore/notification.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appstore/notification.go b/appstore/notification.go index 9637a5d..4c3df6f 100644 --- a/appstore/notification.go +++ b/appstore/notification.go @@ -14,6 +14,8 @@ const ( NotificationTypeInteractiveRenewal NotificationType = "INTERACTIVE_RENEWAL" // Customer changed the plan that takes affect at the next subscription renewal. Current active plan is not affected. NotificationTypeDidChangeRenewalPreference NotificationType = "DID_CHANGE_RENEWAL_PREF" + // Customer changed the subscription renewal status. Current active plan is not affected. + NotificationTypeDidChangeRenewalStatus NotificationType = "DID_CHANGE_RENEWAL_STATUS" ) type NotificationEnvironment string