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.
2 parents 669503f + 4621ae7 commit 65254a9Copy full SHA for 65254a9
lib/types.ts
@@ -2121,6 +2121,18 @@ export type PostbackAction = {
2121
* The `displayText` and `text` properties cannot both be used at the same time.
2122
*/
2123
displayText?: string;
2124
+ /**
2125
+ * The display method of such as rich menu based on user action
2126
+ */
2127
+ inputOption?: "closeRichMenu" | "openRichMenu" | "openKeyboard" | "openVoice";
2128
+ /*
2129
+ * String to be pre-filled in the input field when the keyboard is opened.
2130
+ * Valid only when the inputOption property is set to openKeyboard.
2131
+ * The string can be broken by a newline character (\n).
2132
+ *
2133
+ * Max: 300 characters
2134
2135
+ fillInText?: string;
2136
};
2137
2138
/**
0 commit comments