type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } /** * Optional. Tracking URL used to track the interaction. Provide a URL with * optional path or query string, beginning with `https:`. For example, * `https://www.example.com/path` * * @param string $url */ 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(ThirdPartyUrl::class, 'Google_Service_DisplayVideo_ThirdPartyUrl');