feat: added all enums needed
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
enum DataFormat {
|
||||
Raw = 'Raw',
|
||||
Formatted = 'Formatted',
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
enum FieldStatus {
|
||||
Enabled = 'Enabled',
|
||||
Disabled = 'Disabled',
|
||||
Invalid = 'Invalid',
|
||||
}
|
||||
@@ -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',
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
enum FileStorageSite {
|
||||
Internal = 'Internal',
|
||||
OneDrive = 'OneDrive',
|
||||
GoogleDrive = 'GoogleDrive',
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
enum FormulaOutputType {
|
||||
Text = 'Text',
|
||||
Numeric = 'Numeric',
|
||||
DateAndTime = 'DateAndTime',
|
||||
ListValue = 'ListValue',
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
enum Multiplicity {
|
||||
SingleSelect = 'SingleSelect',
|
||||
MultiSelect = 'MultiSelect',
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
enum ReportDataType {
|
||||
ReportData = 'ReportData',
|
||||
ChartData = 'ChartData',
|
||||
}
|
||||
@@ -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',
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
enum TimeSpanIncrement {
|
||||
Seconds = 'Seconds',
|
||||
Minutes = 'Minutes',
|
||||
Hours = 'Hours',
|
||||
Days = 'Days',
|
||||
Weeks = 'Weeks',
|
||||
Months = 'Months',
|
||||
Years = 'Years',
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
enum TimeSpanRecurrenceType {
|
||||
None = 'None',
|
||||
EndByDate = 'EndByDate',
|
||||
EndAfterOccurrences = 'EndAfterOccurrences',
|
||||
}
|
||||
Reference in New Issue
Block a user