import type * as Pinnacle from "../index.js"; /** * 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]. */ export interface RcsMediaContent { media: Pinnacle.RcsMediaDetailsContent; /** * List of interactive quick reply buttons in the message.

* **Limit:** 10 max */ quickReplies?: Pinnacle.RichButton[]; }