requestParameters['StartTime'] = $startTime; $this->queryParameters['StartTime'] = $startTime; return $this; } /** * @param string $type * * @return $this */ public function setType($type) { $this->requestParameters['Type'] = $type; $this->queryParameters['Type'] = $type; return $this; } /** * @param string $area * * @return $this */ public function setArea($area) { $this->requestParameters['Area'] = $area; $this->queryParameters['Area'] = $area; return $this; } /** * @param string $domainName * * @return $this */ public function setDomainName($domainName) { $this->requestParameters['DomainName'] = $domainName; $this->queryParameters['DomainName'] = $domainName; 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; } /** * @param string $field * * @return $this */ public function setField($field) { $this->requestParameters['Field'] = $field; $this->queryParameters['Field'] = $field; return $this; } }