requestParameters['ObjectPath'] = $objectPath; $this->queryParameters['ObjectPath'] = $objectPath; return $this; } /** * @param string $ownerId * * @return $this */ public function setOwnerId($ownerId) { $this->requestParameters['OwnerId'] = $ownerId; $this->queryParameters['OwnerId'] = $ownerId; return $this; } /** * @param string $securityToken * * @return $this */ public function setSecurityToken($securityToken) { $this->requestParameters['SecurityToken'] = $securityToken; $this->queryParameters['SecurityToken'] = $securityToken; return $this; } /** * @param string $objectType * * @return $this */ public function setObjectType($objectType) { $this->requestParameters['ObjectType'] = $objectType; $this->queryParameters['ObjectType'] = $objectType; return $this; } }