requestParameters['SecurityToken'] = $securityToken; $this->queryParameters['SecurityToken'] = $securityToken; return $this; } /** * @param string $ownerAccount * * @return $this */ public function setOwnerAccount($ownerAccount) { $this->requestParameters['OwnerAccount'] = $ownerAccount; $this->queryParameters['OwnerAccount'] = $ownerAccount; return $this; } /** * @param string $domainName * * @return $this */ public function setDomainName($domainName) { $this->requestParameters['DomainName'] = $domainName; $this->queryParameters['DomainName'] = $domainName; return $this; } /** * @param string $ownerId * * @return $this */ public function setOwnerId($ownerId) { $this->requestParameters['OwnerId'] = $ownerId; $this->queryParameters['OwnerId'] = $ownerId; return $this; } }