Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-04-06 20:35:34 -07:00
parent 0ed9aaf127
commit 216b454c14
40 changed files with 3736 additions and 0 deletions

View File

@ -0,0 +1,12 @@
from enum import Enum
class ApiCallQueryGroupBy(str, Enum):
EMAIL = 'email'
METHOD = 'method'
ENDPOINT = 'endpoint'
USER_ID = 'user_id'
ORIGIN = 'origin'
IP_ADDRESS = 'ip_address'
def __str__(self) -> str:
return str(self.value)