import type * as Pinnacle from "../index.mjs";
/**
* RCS message containing longer text content with optional quick reply buttons.
*/
export interface MessageEventRcsTextContent {
/**
* Unique identifier of the message. This identifier is a string that always begins with the prefix `msg_`, for example: `msg_1234567890`.
* To get the message details, use the [GET /messages/{id}](/api-reference/messages/get) endpoint.
*/
id: string;
/**
* List of interactive quick reply buttons in the message.
* **Limit:** 10 max
*/
quickReplies: Pinnacle.RichButton[];
/** Text content of the RCS message. */
text: string;
}