Google_ExperimentVariations
The Google Pagespeed Insights Google ExperimentVariations class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_AnalyticsService.php
- class Google_ExperimentVariations extends Google_Model {
- public $name;
- public $status;
- public $url;
- public $weight;
- public $won;
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setStatus($status) {
- $this->status = $status;
- }
- public function getStatus() {
- return $this->status;
- }
- public function setUrl($url) {
- $this->url = $url;
- }
- public function getUrl() {
- return $this->url;
- }
- public function setWeight($weight) {
- $this->weight = $weight;
- }
- public function getWeight() {
- return $this->weight;
- }
- public function setWon($won) {
- $this->won = $won;
- }
- public function getWon() {
- return $this->won;
- }
- }