Package com.slack.api.model.manifest
Class AppManifestParams.ParameterProperty
- java.lang.Object
-
- com.slack.api.model.manifest.AppManifestParams.ParameterProperty
-
- Enclosing class:
- AppManifestParams
public static class AppManifestParams.ParameterProperty extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AppManifestParams.ParameterProperty.ParameterPropertyBuilder
-
Constructor Summary
Constructors Constructor Description ParameterProperty()
ParameterProperty(String type, String description, String title, String hint, Integer minLength, Integer maxLength, Integer minimum, Integer maximum)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AppManifestParams.ParameterProperty.ParameterPropertyBuilder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getDescription()
String
getHint()
Integer
getMaximum()
Integer
getMaxLength()
Integer
getMinimum()
Integer
getMinLength()
String
getTitle()
String
getType()
int
hashCode()
void
setDescription(String description)
void
setHint(String hint)
void
setMaximum(Integer maximum)
void
setMaxLength(Integer maxLength)
void
setMinimum(Integer minimum)
void
setMinLength(Integer minLength)
void
setTitle(String title)
void
setType(String type)
String
toString()
-
-
-
Method Detail
-
builder
public static AppManifestParams.ParameterProperty.ParameterPropertyBuilder builder()
-
getType
public String getType()
-
getDescription
public String getDescription()
-
getTitle
public String getTitle()
-
getHint
public String getHint()
-
getMinLength
public Integer getMinLength()
-
getMaxLength
public Integer getMaxLength()
-
getMinimum
public Integer getMinimum()
-
getMaximum
public Integer getMaximum()
-
setType
public void setType(String type)
-
setDescription
public void setDescription(String description)
-
setTitle
public void setTitle(String title)
-
setHint
public void setHint(String hint)
-
setMinLength
public void setMinLength(Integer minLength)
-
setMaxLength
public void setMaxLength(Integer maxLength)
-
setMinimum
public void setMinimum(Integer minimum)
-
setMaximum
public void setMaximum(Integer maximum)
-
canEqual
protected boolean canEqual(Object other)
-
-