Class ButtonElement
public class ButtonElement extends BlockElement
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classButtonElement.ButtonElementBuilder -
Field Summary
-
Constructor Summary
Constructors Constructor Description ButtonElement()ButtonElement(PlainTextObject text, String actionId, String url, String value, String style, ConfirmationDialogObject confirm) -
Method Summary
Modifier and Type Method Description static ButtonElement.ButtonElementBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetActionId()An identifier for this action.ConfirmationDialogObjectgetConfirm()A confirm object that defines an optional confirmation dialog after the button is clicked.StringgetStyle()Decorates buttons with alternative visual color schemes.PlainTextObjectgetText()A text object that defines the button's text.StringgetType()StringgetUrl()A URL to load in the user's browser when the button is clicked.StringgetValue()The value to send along with the interaction payload.inthashCode()voidsetActionId(String actionId)An identifier for this action.voidsetConfirm(ConfirmationDialogObject confirm)A confirm object that defines an optional confirmation dialog after the button is clicked.voidsetStyle(String style)Decorates buttons with alternative visual color schemes.voidsetText(PlainTextObject text)A text object that defines the button's text.voidsetUrl(String url)A URL to load in the user's browser when the button is clicked.voidsetValue(String value)The value to send along with the interaction payload.StringtoString()
-
Field Details
-
TYPE
- See Also:
- Constant Field Values
-
-
Constructor Details
-
ButtonElement
public ButtonElement() -
ButtonElement
public ButtonElement(PlainTextObject text, String actionId, String url, String value, String style, ConfirmationDialogObject confirm)
-
-
Method Details
-
builder
-
getType
-
getText
A text object that defines the button's text. Can only be of type: plain_text. Maximum length for the text in this field is 75 characters. -
getActionId
An identifier for this action. You can use this when you receive an interaction payload to identify the source of the action. Should be unique among all other action_ids used elsewhere by your app. Maximum length for this field is 255 characters. -
getUrl
A URL to load in the user's browser when the button is clicked. Maximum length for this field is 3000 characters. If you're using url, you'll still receive an interaction payload and will need to send an acknowledgement response. -
getValue
The value to send along with the interaction payload. Maximum length for this field is 2000 characters. -
getStyle
Decorates buttons with alternative visual color schemes. Use this option with restraint.`primary` gives buttons a green outline and text, ideal for affirmation or confirmation actions. `primary` should only be used for one button within a set.
`danger` gives buttons a red outline and text, and should be used when the action is destructive. Use danger even more sparingly than `primary`.
If you don't include this field, the `default` button style will be used.
-
getConfirm
A confirm object that defines an optional confirmation dialog after the button is clicked. -
setText
A text object that defines the button's text. Can only be of type: plain_text. Maximum length for the text in this field is 75 characters. -
setActionId
An identifier for this action. You can use this when you receive an interaction payload to identify the source of the action. Should be unique among all other action_ids used elsewhere by your app. Maximum length for this field is 255 characters. -
setUrl
A URL to load in the user's browser when the button is clicked. Maximum length for this field is 3000 characters. If you're using url, you'll still receive an interaction payload and will need to send an acknowledgement response. -
setValue
The value to send along with the interaction payload. Maximum length for this field is 2000 characters. -
setStyle
Decorates buttons with alternative visual color schemes. Use this option with restraint.`primary` gives buttons a green outline and text, ideal for affirmation or confirmation actions. `primary` should only be used for one button within a set.
`danger` gives buttons a red outline and text, and should be used when the action is destructive. Use danger even more sparingly than `primary`.
If you don't include this field, the `default` button style will be used.
-
setConfirm
A confirm object that defines an optional confirmation dialog after the button is clicked. -
toString
-
equals
-
canEqual
-
hashCode
public int hashCode()
-