Skip to content
parkd126 edited this page Dec 26, 2018 · 2 revisions

Overview

The type identifier for a new custom field. Used for creating new CaseField's.

Fields

  • 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, ... )

Clone this wiki locally