Google_GoalEventDetails
The Google Pagespeed Insights Google GoalEventDetails class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_AnalyticsService.php
- class Google_GoalEventDetails extends Google_Model {
- protected $__eventConditionsType = 'Google_GoalEventDetailsEventConditions';
- protected $__eventConditionsDataType = 'array';
- public $eventConditions;
- public $useEventValue;
- public function setEventConditions(/** array(Google_GoalEventDetailsEventConditions) */ $eventConditions) {
- $this->assertIsArray($eventConditions, 'Google_GoalEventDetailsEventConditions', __METHOD__);
- $this->eventConditions = $eventConditions;
- }
- public function getEventConditions() {
- return $this->eventConditions;
- }
- public function setUseEventValue($useEventValue) {
- $this->useEventValue = $useEventValue;
- }
- public function getUseEventValue() {
- return $this->useEventValue;
- }
- }