Google_AnalyticsSnapshot
The Google Books Importer Google AnalyticsSnapshot class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_UrlshortenerService.php
- class Google_AnalyticsSnapshot extends Google_Model {
- protected $__browsersType = 'Google_StringCount';
- protected $__browsersDataType = 'array';
- public $browsers;
- protected $__countriesType = 'Google_StringCount';
- protected $__countriesDataType = 'array';
- public $countries;
- public $longUrlClicks;
- protected $__platformsType = 'Google_StringCount';
- protected $__platformsDataType = 'array';
- public $platforms;
- protected $__referrersType = 'Google_StringCount';
- protected $__referrersDataType = 'array';
- public $referrers;
- public $shortUrlClicks;
- public function setBrowsers(/** array(Google_StringCount) */ $browsers) {
- $this->assertIsArray($browsers, 'Google_StringCount', __METHOD__);
- $this->browsers = $browsers;
- }
- public function getBrowsers() {
- return $this->browsers;
- }
- public function setCountries(/** array(Google_StringCount) */ $countries) {
- $this->assertIsArray($countries, 'Google_StringCount', __METHOD__);
- $this->countries = $countries;
- }
- public function getCountries() {
- return $this->countries;
- }
- public function setLongUrlClicks( $longUrlClicks) {
- $this->longUrlClicks = $longUrlClicks;
- }
- public function getLongUrlClicks() {
- return $this->longUrlClicks;
- }
- public function setPlatforms(/** array(Google_StringCount) */ $platforms) {
- $this->assertIsArray($platforms, 'Google_StringCount', __METHOD__);
- $this->platforms = $platforms;
- }
- public function getPlatforms() {
- return $this->platforms;
- }
- public function setReferrers(/** array(Google_StringCount) */ $referrers) {
- $this->assertIsArray($referrers, 'Google_StringCount', __METHOD__);
- $this->referrers = $referrers;
- }
- public function getReferrers() {
- return $this->referrers;
- }
- public function setShortUrlClicks( $shortUrlClicks) {
- $this->shortUrlClicks = $shortUrlClicks;
- }
- public function getShortUrlClicks() {
- return $this->shortUrlClicks;
- }
- }