public function ReportGetFollows($report_id, $limit = false, $offset = false)
 {
     // $report_id   : IDType
     // $limit       : integer (optional) default 10
     // $offset      : integer (optional) default 0
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["report_id"] = $report_id;
     if ($limit !== false) {
         $reg_args["limit"] = $limit;
     } else {
         $reg_args["limit"] = 10;
     }
     if ($offset !== false) {
         $reg_args["offset"] = $offset;
     } else {
         $reg_args["offset"] = 0;
     }
     $this->encodeString($reg_args);
     $results = parent::ReportGetFollows($reg_args);
     $this->methodClose();
     return $this->decodeString($results);
 }