/**
* SMS message containing plain text only.
*/
export interface MessageEventSmsContent {
/**
* 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;
/** Message content. */
text: string;
}