-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
58 lines (44 loc) · 1.14 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from enum import Enum
class PropertiesStatus(str, Enum):
VENDIDO = "sold"
RENTADO = "rented"
EN_VENTA = "for sale"
EN_ALQUILER = "for rent"
class PropertiesType(str, Enum):
CASA = "house"
APARTAMENTO = "apartment"
TERRENO = "land"
LOCAL = "local"
COMERCIAL = "commercial"
OTRO = "other"
class TransactionType(str, Enum):
ALQUILER = "rent"
VENTA = "sale"
OTRA = "other"
class InteractionProgressStage(str, Enum):
INICIADA = "started"
COMPLETADA = "completed"
CANCELADA = "canceled"
PENDIENTE = "pending"
EN_SEGUIMIENTO = "follow up"
class InteractionType(str, Enum):
CONSULTA = "inquiry"
CONTACTO = "contact"
SOLICITUD = "request"
LLAMADA = "call"
EMAIL = "email"
VISITA = "visit"
REUNION = "meeting"
OTRO = "other"
class AppointmentStatus(str, Enum):
CREADA = "created"
CONFIRMADA = "confirmed"
CANCELADA = "canceled"
REPROGRAMADA = "reprogrammed"
RECUPERADA = "recovered"
EN_SEGUIMIENTO = "follow up"
COMPLETADA = "completed"
AGENDADA = "scheduled"
class RoleUser(str, Enum):
ADMIN = "admin"
AGENT = "agent"