import type * as Pinnacle from "../index.mjs"; /** * Configure how your RCS message is sent and tracked. */ export interface SendRichMessageOptions4 { schedule?: Pinnacle.MessageSchedule; tracking?: Pinnacle.Tracking; /** Media files and card media will be transcoded to a supported RCS format. This adds a small delay to sending the message. Ignored for rich text messages. */ transcode?: boolean; /** * Validate your message for any unsupported files.
* * If failed, errors will be thrown and the message will not send. */ validate?: boolean; }