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