Google_PathToConversionReportCompatibleFields
The Google Books Importer Google PathToConversionReportCompatibleFields class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DfareportingService.php
- class Google_PathToConversionReportCompatibleFields extends Google_Model {
- protected $__conversionDimensionsType = 'Google_Dimension';
- protected $__conversionDimensionsDataType = 'array';
- public $conversionDimensions;
- protected $__customFloodlightVariablesType = 'Google_Dimension';
- protected $__customFloodlightVariablesDataType = 'array';
- public $customFloodlightVariables;
- public $kind;
- protected $__metricsType = 'Google_Metric';
- protected $__metricsDataType = 'array';
- public $metrics;
- protected $__perInteractionDimensionsType = 'Google_Dimension';
- protected $__perInteractionDimensionsDataType = 'array';
- public $perInteractionDimensions;
- public function setConversionDimensions(/** array(Google_Dimension) */ $conversionDimensions) {
- $this->assertIsArray($conversionDimensions, 'Google_Dimension', __METHOD__);
- $this->conversionDimensions = $conversionDimensions;
- }
- public function getConversionDimensions() {
- return $this->conversionDimensions;
- }
- public function setCustomFloodlightVariables(/** array(Google_Dimension) */ $customFloodlightVariables) {
- $this->assertIsArray($customFloodlightVariables, 'Google_Dimension', __METHOD__);
- $this->customFloodlightVariables = $customFloodlightVariables;
- }
- public function getCustomFloodlightVariables() {
- return $this->customFloodlightVariables;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setMetrics(/** array(Google_Metric) */ $metrics) {
- $this->assertIsArray($metrics, 'Google_Metric', __METHOD__);
- $this->metrics = $metrics;
- }
- public function getMetrics() {
- return $this->metrics;
- }
- public function setPerInteractionDimensions(/** array(Google_Dimension) */ $perInteractionDimensions) {
- $this->assertIsArray($perInteractionDimensions, 'Google_Dimension', __METHOD__);
- $this->perInteractionDimensions = $perInteractionDimensions;
- }
- public function getPerInteractionDimensions() {
- return $this->perInteractionDimensions;
- }
- }