caseSensitive = $caseSensitive; } /** * @return bool */ public function getCaseSensitive() { return $this->caseSensitive; } /** * @param bool */ public function setFirstStepRequired($firstStepRequired) { $this->firstStepRequired = $firstStepRequired; } /** * @return bool */ public function getFirstStepRequired() { return $this->firstStepRequired; } /** * @param string */ public function setMatchType($matchType) { $this->matchType = $matchType; } /** * @return string */ public function getMatchType() { return $this->matchType; } /** * @param GoalUrlDestinationDetailsSteps[] */ public function setSteps($steps) { $this->steps = $steps; } /** * @return GoalUrlDestinationDetailsSteps[] */ public function getSteps() { return $this->steps; } /** * @param string */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoalUrlDestinationDetails::class, 'Google_Service_Analytics_GoalUrlDestinationDetails');