Google_ReportPathToConversionCriteria
The Google Pagespeed Insights Google ReportPathToConversionCriteria class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_DfareportingService.php
- class Google_ReportPathToConversionCriteria extends Google_Model {
- protected $__activityFiltersType = 'Google_DimensionValue';
- protected $__activityFiltersDataType = 'array';
- public $activityFilters;
- protected $__conversionDimensionsType = 'Google_SortedDimension';
- protected $__conversionDimensionsDataType = 'array';
- public $conversionDimensions;
- protected $__customFloodlightVariablesType = 'Google_SortedDimension';
- protected $__customFloodlightVariablesDataType = 'array';
- public $customFloodlightVariables;
- protected $__dateRangeType = 'Google_DateRange';
- protected $__dateRangeDataType = '';
- public $dateRange;
- protected $__floodlightConfigIdType = 'Google_DimensionValue';
- protected $__floodlightConfigIdDataType = '';
- public $floodlightConfigId;
- public $metricNames;
- protected $__perInteractionDimensionsType = 'Google_SortedDimension';
- protected $__perInteractionDimensionsDataType = 'array';
- public $perInteractionDimensions;
- protected $__reportPropertiesType = 'Google_ReportPathToConversionCriteriaReportProperties';
- protected $__reportPropertiesDataType = '';
- public $reportProperties;
- public function setActivityFilters(/** array(Google_DimensionValue) */ $activityFilters) {
- $this->assertIsArray($activityFilters, 'Google_DimensionValue', __METHOD__);
- $this->activityFilters = $activityFilters;
- }
- public function getActivityFilters() {
- return $this->activityFilters;
- }
- public function setConversionDimensions(/** array(Google_SortedDimension) */ $conversionDimensions) {
- $this->assertIsArray($conversionDimensions, 'Google_SortedDimension', __METHOD__);
- $this->conversionDimensions = $conversionDimensions;
- }
- public function getConversionDimensions() {
- return $this->conversionDimensions;
- }
- public function setCustomFloodlightVariables(/** array(Google_SortedDimension) */ $customFloodlightVariables) {
- $this->assertIsArray($customFloodlightVariables, 'Google_SortedDimension', __METHOD__);
- $this->customFloodlightVariables = $customFloodlightVariables;
- }
- public function getCustomFloodlightVariables() {
- return $this->customFloodlightVariables;
- }
- public function setDateRange(Google_DateRange $dateRange) {
- $this->dateRange = $dateRange;
- }
- public function getDateRange() {
- return $this->dateRange;
- }
- public function setFloodlightConfigId(Google_DimensionValue $floodlightConfigId) {
- $this->floodlightConfigId = $floodlightConfigId;
- }
- public function getFloodlightConfigId() {
- return $this->floodlightConfigId;
- }
- public function setMetricNames($metricNames) {
- $this->metricNames = $metricNames;
- }
- public function getMetricNames() {
- return $this->metricNames;
- }
- public function setPerInteractionDimensions(/** array(Google_SortedDimension) */ $perInteractionDimensions) {
- $this->assertIsArray($perInteractionDimensions, 'Google_SortedDimension', __METHOD__);
- $this->perInteractionDimensions = $perInteractionDimensions;
- }
- public function getPerInteractionDimensions() {
- return $this->perInteractionDimensions;
- }
- public function setReportProperties(Google_ReportPathToConversionCriteriaReportProperties $reportProperties) {
- $this->reportProperties = $reportProperties;
- }
- public function getReportProperties() {
- return $this->reportProperties;
- }
- }