Class CarouselTemplate.CarouselTemplateBuilder
- java.lang.Object
-
- com.linecorp.bot.model.message.template.CarouselTemplate.CarouselTemplateBuilder
-
- Enclosing class:
- CarouselTemplate
public static class CarouselTemplate.CarouselTemplateBuilder extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CarouselTemplatebuild()CarouselTemplate.CarouselTemplateBuildercolumns(java.util.List<CarouselColumn> columns)List of columns.CarouselTemplate.CarouselTemplateBuilderimageAspectRatio(java.lang.String imageAspectRatio)Aspect ratio of the image.CarouselTemplate.CarouselTemplateBuilderimageSize(java.lang.String imageSize)Size of the image.java.lang.StringtoString()
-
-
-
Method Detail
-
columns
public CarouselTemplate.CarouselTemplateBuilder columns(java.util.List<CarouselColumn> columns)
List of columns.Max: 5
- Returns:
this.
-
imageAspectRatio
public CarouselTemplate.CarouselTemplateBuilder imageAspectRatio(java.lang.String imageAspectRatio)
Aspect ratio of the image.Specify one of the following values:
- rectangle: 1.51:1
- square: 1:1
The default value is
rectangle.- Returns:
this.
-
imageSize
public CarouselTemplate.CarouselTemplateBuilder imageSize(java.lang.String imageSize)
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.- Returns:
this.
-
build
public CarouselTemplate build()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-