requestParameters['StartTime'] = $startTime; $this->queryParameters['StartTime'] = $startTime; return $this; } /** * @param string $limit * * @return $this */ public function setLimit($limit) { $this->requestParameters['Limit'] = $limit; $this->queryParameters['Limit'] = $limit; return $this; } /** * @param string $endTime * * @return $this */ public function setEndTime($endTime) { $this->requestParameters['EndTime'] = $endTime; $this->queryParameters['EndTime'] = $endTime; return $this; } /** * @param string $ownerId * * @return $this */ public function setOwnerId($ownerId) { $this->requestParameters['OwnerId'] = $ownerId; $this->queryParameters['OwnerId'] = $ownerId; return $this; } }