import type * as Pinnacle from "../index.mjs"; /** * Content type of the message. */ export type MessageContent = /** * Message with text only from a phone number */ Pinnacle.SmsContent /** * Message with text and/or media files from a phone number.
* * See [supported media types](https://app.pinnacle.sh/supported-file-types?type=MMS). */ | Pinnacle.MmsContent /** * Message that contains richer content (longer text, higher quality media, cards, buttons, and quick replies) from an RCS agent. */ | Pinnacle.RcsContent /** * Message that represents when a user clicks on a RCS button or quick reply. */ | Pinnacle.ButtonClicked;