Skip to content

Selection

Get a list of fields and their settings.

  • Permissions to view the App is needed.
  • API Tokens cannot be used with this API.

CheckboxField

Warning

Methods

getAlign()

Get the align

Parameter

(none)

Return

AlignLayout

Sample code

get Align Source code
AlignLayout align = checkboxField.getAlign();

getDefaultValue()

Get the defaultValue

Parameter

(none)

Return

List<String>

Sample code

get Default Value Source code
List defaultValue = checkboxField.getDefaultValue();

Warning

Methods

getDefaultValue()

Get the defaultValue

Parameter

(none)

Return

String

Sample code

get Default Value Source code
String defaultValue = dropDownField.getDefaultValue();

MultipleSelectField

Warning

Methods

getDefaultValue()

Get the defaultValue

Parameter

(none)

Return

List<String>

Sample code

get Default Value Source code
List defaultValue = multipleSelectField.getDefaultValue();

OptionData

Methods

getIndex()

Get the index

Parameter

(none)

Return

Integer

Sample code

get Index Source code
Integer index = optionData.getIndex();

getLabel()

Get the label

Parameter

(none)

Return

String

Sample code

get Label Source code
String label = optionData.getLabel();

RadioButtonField

Warning

Methods

getAlign()

Get the align

Parameter

(none)

Return

AlignLayout

Sample code

get Align Source code
AlignLayout align = radioButtonField.getAlign();

getDefaultValue()

Get the defaultValue

Parameter

(none)

Return

String

Sample code

get Default Value Source code
String defaultValue = radioButtonField.getDefaultValue();

AbstractSelectionField

Warning

Methods

getOptions()

Get the options

Parameter

(none)

Return

Map<String, OptionData>

Reference