/**
* MMS message with text and/or media files from a phone number.
*/
export interface MessageEventMmsContent {
/**
* 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;
/**
* URLs of media files in this message.
*
* See [supported media types](https://app.pinnacle.sh/supported-file-types?type=MMS).
*/
mediaUrls: string[];
/** Text content that may accompany the media files. */
text?: string;
}