export interface SentMmsDetails {
/**
* Array of unique message identifiers for an individual MMS send. Each identifier is a string that always begins with the prefix `msg_`, for example: `msg_1234567890`.
* When media assets are too large to fit in a single MMS and `options.multiple_messages` is set to true, the content is automatically split across multiple messages. Each split message gets its own ID, and all IDs are returned in this array.
* Note: When sending to audiences, you'll receive multiple response objects (one per recipient), each containing its own messageIds array.
*/
messageIds: string[];
/** Total number of segments used across the message. */
segments: number;
/** Total cost of sending the message. */
totalCost: number;
/** Sender's phone number in E.164 format. */
sender: string;
/** Recipient's phone number in E.164 format. */
recipient: string;
/** Message is queued for delivery. */
status: "queued";
}