Class CarouselTemplate
- java.lang.Object
-
- com.linecorp.bot.model.message.template.CarouselTemplate
-
- All Implemented Interfaces:
Template
public final class CarouselTemplate extends java.lang.Object implements Template
Template message with multiple columns which can be cycled like a carousel.- See Also:
CarouselTemplate.CarouselTemplateBuilder
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCarouselTemplate.CarouselTemplateBuilder
-
Constructor Summary
Constructors Constructor Description CarouselTemplate(java.util.List<CarouselColumn> columns)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CarouselTemplate.CarouselTemplateBuilderbuilder()booleanequals(java.lang.Object o)java.util.List<CarouselColumn>getColumns()List of columns.java.lang.StringgetImageAspectRatio()Aspect ratio of the image.java.lang.StringgetImageSize()Size of the image.inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
CarouselTemplate
public CarouselTemplate(java.util.List<CarouselColumn> columns)
-
-
Method Detail
-
builder
public static CarouselTemplate.CarouselTemplateBuilder builder()
-
getColumns
public java.util.List<CarouselColumn> getColumns()
List of columns.Max: 5
-
getImageAspectRatio
public java.lang.String getImageAspectRatio()
Aspect ratio of the image.Specify one of the following values:
- rectangle: 1.51:1
- square: 1:1
The default value is
rectangle.
-
getImageSize
public java.lang.String getImageSize()
Size of the image.Specify one of the following values:
- cover: The image fills the entire image area. Parts of the image that do not fit in the area are not displayed.
- contain: The entire image is displayed in the image area. A background is displayed in the unused areas to the left and right of vertical images and in the areas above and below horizontal images.
The default value is
cover.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-