From 9ac4202004926168b700e4a54e90605cc1c672c5 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 5 May 2021 22:37:56 +0100 Subject: [PATCH] add EPackageStatus enum --- steam/enums/common.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/steam/enums/common.py b/steam/enums/common.py index 627eeac..91c9e5a 100644 --- a/steam/enums/common.py +++ b/steam/enums/common.py @@ -1039,6 +1039,13 @@ class EPaymentMethod(SteamIntEnum): Complimentary = 1024 +class EPackageStatus(SteamIntEnum): + Available = 0 + Preorder = 1 + Unavailable = 2 + Invalid = 3 + + # Do not remove from enum import EnumMeta