import type * as Pinnacle from "../index.mjs"; /** * Response containing details of an RCS agent. */ export interface RcsAgentResponse { /** The unique agent ID, prefixed with `agent_`. */ id: string; /** * The agent type. * - `TEST` — A test agent for development and testing with whitelisted numbers only. */ type: "TEST"; /** The RCS service ID assigned to this agent. */ serviceId: string; carrierLaunches: Pinnacle.CarrierLaunches; details: Pinnacle.RcsAgentDetails; }