diff --git a/ak_vendor/enums.py b/ak_vendor/enums.py index 04a4837..8730825 100644 --- a/ak_vendor/enums.py +++ b/ak_vendor/enums.py @@ -420,3 +420,26 @@ class Meta: NONE = [0, 'None'] TOTP = [1, 'TOTP'] HOTP = [2, 'HOTP'] + + +@choices +class OneTimeScanStatusEnum: + class Meta: + ACTIVE = [0, 'Active'] + EXPIRED = [1, 'Expired'] + + +@choices +class SubscriptionStatusEnum: + class Meta: + ACTIVE = [0, 'Active'] + CANCELLED = [1, 'Cancelled'] + EXPIRED = [2, 'Expired'] + INVALID_CARD = [3, 'Invalid Card'] + + +@choices +class PlanTypeEnum: + class Meta: + SUBSCRIPTION = [0, 'Subscription'] + ONETIME = [1, 'Onetime']