-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule.py
37 lines (36 loc) · 1.1 KB
/
module.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
import enum
class Module(enum.Enum):
ACCOUNTS = "Accounts"
CALLS = "Calls"
CAMPAIGNS = "Campaigns"
CASES = "Cases"
CONTACTS = "Contacts"
AOS_CONTRACTS = "AOS_Contracts"
DOCUMENTS = "Documents"
EMAILTEMPLATES = "EmailTemplates"
EMAILS = "Emails"
FP_EVENTS = "FP_events"
AOS_INVOICES = "AOS_Invoices"
AOK_KNOWLEDGE_BASE_CATEGORIES = "AOK_Knowledge_Base_Categories"
AOK_KNOWLEDGEBASE = "AOK_KnowledgeBase"
LEADS = "Leads"
FP_EVENT_LOCATIONS = "FP_Event_Locations"
JJWG_MAPS = "jjwg_Maps"
JJWG_ADDRESS_CACHE = "jjwg_Address_Cache"
JJWG_AREAS = "jjwg_Areas"
JJWG_MARKERS = "jjwg_Markers"
MEETINGS = "Meetings"
NOTES = "Notes"
OPPORTUNITIES = "Opportunities"
AOS_PDF_TEMPLATES = "AOS_PDF_Templates"
AOS_PRODUCTS = "AOS_Products"
AOS_PRODUCT_CATEGORIES = "AOS_Product_Categories"
PROJECT = "Project"
AM_PROJECTTEMPLATES = "AM_ProjectTemplates"
AOS_QUOTES = "AOS_Quotes"
AOR_REPORTS = "AOR_Reports"
SPOTS = "Spots"
SURVEYS = "Surveys"
TASKS = "Tasks"
USER = "User"
AOW_WORKFLOW = "AOW_WorkFlow"