feat: added all enums needed

This commit is contained in:
StevanFreeborn
2023-01-26 23:26:01 -06:00
parent 4258793544
commit fcc47993cd
10 changed files with 72 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
enum DataFormat {
Raw = 'Raw',
Formatted = 'Formatted',
}
+5
View File
@@ -0,0 +1,5 @@
enum FieldStatus {
Enabled = 'Enabled',
Disabled = 'Disabled',
Invalid = 'Invalid',
}
+16
View File
@@ -0,0 +1,16 @@
enum FieldType {
Text = 'Text',
Number = 'Number',
AutoNumber = 'AutoNumber',
Date = 'Date',
TimeSpan = 'TimeSpan',
List = 'List',
Reference = 'Reference',
SurveyReference = 'SurveyReference',
SurveyGroupScoring = 'SurveyGroupScoring',
SurveyCampaign = 'SurveyCampaign',
SurveyUnifiedAnswer = 'SurveyUnifiedAnswer',
Attachment = 'Attachment',
Image = 'Image',
Formula = 'Formula',
}
+5
View File
@@ -0,0 +1,5 @@
enum FileStorageSite {
Internal = 'Internal',
OneDrive = 'OneDrive',
GoogleDrive = 'GoogleDrive',
}
+6
View File
@@ -0,0 +1,6 @@
enum FormulaOutputType {
Text = 'Text',
Numeric = 'Numeric',
DateAndTime = 'DateAndTime',
ListValue = 'ListValue',
}
+4
View File
@@ -0,0 +1,4 @@
enum Multiplicity {
SingleSelect = 'SingleSelect',
MultiSelect = 'MultiSelect',
}
+4
View File
@@ -0,0 +1,4 @@
enum ReportDataType {
ReportData = 'ReportData',
ChartData = 'ChartData',
}
+14
View File
@@ -0,0 +1,14 @@
enum ResultValueType {
String = 'String',
Integer = 'Integer',
Decimal = 'Decimal',
Date = 'Date',
TimeSpan = 'TimeSpan',
Guid = 'Guid',
StringList = 'StringList',
IntegerList = 'IntegerList',
GuidList = 'GuidList',
AttachmentList = 'AttachmentList',
ScoringGroupList = 'ScoringGroupList',
FileList = 'FileList',
}
+9
View File
@@ -0,0 +1,9 @@
enum TimeSpanIncrement {
Seconds = 'Seconds',
Minutes = 'Minutes',
Hours = 'Hours',
Days = 'Days',
Weeks = 'Weeks',
Months = 'Months',
Years = 'Years',
}
+5
View File
@@ -0,0 +1,5 @@
enum TimeSpanRecurrenceType {
None = 'None',
EndByDate = 'EndByDate',
EndAfterOccurrences = 'EndAfterOccurrences',
}