/**
 * @example
 *     {
 *         call_id: "call_id"
 *     }
 */
export interface ShowCallRequest {
    /** The id of the call to retrieve */
    call_id: string;
}
