Package com.intercom.api.types
Interface ListItem._FinalStage
-
- All Known Implementing Classes:
ListItem.Builder
- Enclosing class:
- ListItem
public static interface ListItem._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListItem._FinalStageaction(ActionComponent action)ListItem._FinalStageaction(java.util.Optional<ActionComponent> action)This can be a Submit Action, URL Action, or Sheets Action.ListItembuild()ListItem._FinalStagedisabled(java.lang.Boolean disabled)ListItem._FinalStagedisabled(java.util.Optional<java.lang.Boolean> disabled)Styles all list items and prevents the action.ListItem._FinalStageroundedImage(java.lang.Boolean roundedImage)ListItem._FinalStageroundedImage(java.util.Optional<java.lang.Boolean> roundedImage)Rounds the corners of the image.ListItem._FinalStagesubtitle(java.lang.String subtitle)ListItem._FinalStagesubtitle(java.util.Optional<java.lang.String> subtitle)The text shown underneath the item's title.ListItem._FinalStagetertiaryText(java.lang.String tertiaryText)ListItem._FinalStagetertiaryText(java.util.Optional<java.lang.String> tertiaryText)The text shown next to the subtitle, separates by a bullet.
-
-
-
Method Detail
-
build
ListItem build()
-
subtitle
ListItem._FinalStage subtitle(java.util.Optional<java.lang.String> subtitle)
The text shown underneath the item's title.
-
subtitle
ListItem._FinalStage subtitle(java.lang.String subtitle)
-
tertiaryText
ListItem._FinalStage tertiaryText(java.util.Optional<java.lang.String> tertiaryText)
The text shown next to the subtitle, separates by a bullet.
-
tertiaryText
ListItem._FinalStage tertiaryText(java.lang.String tertiaryText)
-
roundedImage
ListItem._FinalStage roundedImage(java.util.Optional<java.lang.Boolean> roundedImage)
Rounds the corners of the image. Default is
false.
-
roundedImage
ListItem._FinalStage roundedImage(java.lang.Boolean roundedImage)
-
disabled
ListItem._FinalStage disabled(java.util.Optional<java.lang.Boolean> disabled)
Styles all list items and prevents the action. Default is
false.
-
disabled
ListItem._FinalStage disabled(java.lang.Boolean disabled)
-
action
ListItem._FinalStage action(java.util.Optional<ActionComponent> action)
This can be a Submit Action, URL Action, or Sheets Action.
-
action
ListItem._FinalStage action(ActionComponent action)
-
-