-
Notifications
You must be signed in to change notification settings - Fork 1
Type
The type identifier for a new custom field. Used for creating new CaseField's.
-
String
Example:
val someCaseField = CaseField( ... , type = Type.STRING, ... ) -
Integer
Example:
val someCaseField = CaseField( ... , type = Type.INTEGER, ... ) -
Text
Example:
val someCaseField = CaseField( ... , type = Type.TEXT, ... ) -
URL
Example:
val someCaseField = CaseField( ... , type = Type.URL, ... ) -
Checkbox
Example:
val someCaseField = CaseField( ... , type = Type.CHECKBOX, ... ) -
Dropdown
Example:
val someCaseField = CaseField( ... , type = Type.DROPDOWN, ... ) -
User
Example:
val someCaseField = CaseField( ... , type = Type.USER, ... ) -
Date
Example:
val someCaseField = CaseField( ... , type = Type.DATE, ... ) -
Milestone
Example:
val someCaseField = CaseField( ... , type = Type.MILESTONE, ... ) -
Steps
Example:
val someCaseField = CaseField( ... , type = Type.STEPS, ... ) -
Multiselect
Example:
val someCaseField = CaseField( ... , type = Type.MULTISELECT, ... )