We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef6b58e commit 755884aCopy full SHA for 755884a
line-bot-model/src/main/java/com/linecorp/bot/model/richmenu/RichMenuSize.java
@@ -26,9 +26,12 @@ public class RichMenuSize {
26
public static final RichMenuSize FULL = new RichMenuSize(2500, 1686);
27
public static final RichMenuSize HALF = new RichMenuSize(2500, 843);
28
29
- /** Width of the rich menu. Must be 2500. */
+ /** Width of the rich menu. Possible values: 2500, 1200, or 800. */
30
int width;
31
- /** Height of the rich menu. Possible values: 1686 or 843. */
+ /**
32
+ * Height of the rich menu.
33
+ * Possible values: 1686 or 843 for width = 2500, 810 or 405 for 1200, 540 or 270 for 800.
34
+ */
35
int height;
36
37
@JsonCreator
0 commit comments