Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/embedded/classes/IterableEmbeddedMessageElementsButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ export class IterableEmbeddedMessageElementsButton {
* An interface defining the dictionary object containing the properties for the embedded message button.
*/
export interface EmbeddedMessageElementsButtonDict {
/** The ID for the embedded message button */
id: string;
/** The title for the embedded message button */
title?: string;
/** The action for the embedded message button */
action?: IterableEmbeddedMessageElementsButtonAction;
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ export class IterableEmbeddedMessageElementsButtonAction {
* An interface defining the dictionary object containing the properties for the embedded message button action.
*/
export interface EmbeddedMessageButtonActionDict {
/** The type of the action */
type: string;
/** The data associated with the action */
data?: string;
}