import type * as Pinnacle from "../index.mjs"; /** * Message with richer content (longer text, media files, cards, and buttons) from interacting with an RCS agent. */ export type RcsContent = /** * Message containing longer text content with optional quick reply buttons. */ Pinnacle.RichText /** * Message containing a media file and/or text with optional quick reply buttons.
* * See [supported file types](https://app.pinnacle.sh/supported-file-types?type=RCS-MEDIA). */ | Pinnacle.RcsMediaContent /** * Message containing cards, each with its own title, subtitle, and/or buttons. Quick replies can also be added.
* * See [supported file types](https://app.pinnacle.sh/supported-file-types?type=RCS-CARD). */ | Pinnacle.RcsCardsContent;