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