export interface SentRichMessage { /** Unique identifier for the sent RCS message. This identifier is a string that always begins with the prefix `msg_`, for example: `msg_1234567890`. */ messageId: 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; /** Current status of the message. */ status: "queued"; }