/** * Response schema confirming the typing indicator was sent. */ export interface SendTypingIndicatorResponse { /** Indicates whether the typing indicator was successfully sent. */ success: boolean; /** The RCS agent that sent the typing indicator. */ agentId: string; /** The recipient's phone number that received the typing indicator. */ recipient: string; /** Timestamp when the typing indicator was started (ISO 8601 format). */ startedAt: string; /** * Timestamp when the typing indicator will automatically expire (ISO 8601 format).
* * This is typically one minute after `startedAt` unless a message is sent first. */ endedAt: string; }