export interface RcsValidationResult { /** Total price of this message. Calculated by multiplying the number of messages by the unit cost. */ total: number; /** Cost per message. */ unit: number; /** Total number of segments used across the message. */ segments: number; /** List of unsupported media file names or URLs. */ unsupportedFiles: string[]; }