Google_McfDataRows
The Google Books Importer Google McfDataRows class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_AnalyticsService.php
- class Google_McfDataRows extends Google_Model {
- protected $__conversionPathValueType = 'Google_McfDataRowsConversionPathValue';
- protected $__conversionPathValueDataType = 'array';
- public $conversionPathValue;
- public $primitiveValue;
- public function setConversionPathValue(/** array(Google_McfDataRowsConversionPathValue) */ $conversionPathValue) {
- $this->assertIsArray($conversionPathValue, 'Google_McfDataRowsConversionPathValue', __METHOD__);
- $this->conversionPathValue = $conversionPathValue;
- }
- public function getConversionPathValue() {
- return $this->conversionPathValue;
- }
- public function setPrimitiveValue( $primitiveValue) {
- $this->primitiveValue = $primitiveValue;
- }
- public function getPrimitiveValue() {
- return $this->primitiveValue;
- }
- }