Package com.slack.api.model.dialog
Interface DialogElement
-
- All Known Implementing Classes:
DialogSelectElement,DialogTextAreaElement,DialogTextElement
public interface DialogElementA dialog Form DialogElement such astext,textarea, orselectorselect.- See Also:
- Slack Dialogs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLabel()StringgetName()StringgetPlaceholder()StringgetType()StringgetValue()booleanisOptional()voidsetLabel(String label)voidsetName(String name)voidsetOptional(boolean isOptional)voidsetPlaceholder(String placeholder)voidsetValue(String value)
-
-
-
Method Detail
-
getLabel
String getLabel()
-
setLabel
void setLabel(String label)
-
getName
String getName()
-
setName
void setName(String name)
-
getType
String getType()
-
getValue
String getValue()
-
setValue
void setValue(String value)
-
getPlaceholder
String getPlaceholder()
-
setPlaceholder
void setPlaceholder(String placeholder)
-
isOptional
boolean isOptional()
-
setOptional
void setOptional(boolean isOptional)
-
-