Google_EntityUserLinkEntity
The BestWebSoft Google Analytics Google EntityUserLinkEntity class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/api-code/contrib/Google_AnalyticsService.php
- class Google_EntityUserLinkEntity extends Google_Model {
- protected $__accountRefType = 'Google_AccountRef';
- protected $__accountRefDataType = '';
- public $accountRef;
- protected $__profileRefType = 'Google_ProfileRef';
- protected $__profileRefDataType = '';
- public $profileRef;
- protected $__webPropertyRefType = 'Google_WebPropertyRef';
- protected $__webPropertyRefDataType = '';
- public $webPropertyRef;
- public function setAccountRef(Google_AccountRef $accountRef) {
- $this->accountRef = $accountRef;
- }
- public function getAccountRef() {
- return $this->accountRef;
- }
- public function setProfileRef(Google_ProfileRef $profileRef) {
- $this->profileRef = $profileRef;
- }
- public function getProfileRef() {
- return $this->profileRef;
- }
- public function setWebPropertyRef(Google_WebPropertyRef $webPropertyRef) {
- $this->webPropertyRef = $webPropertyRef;
- }
- public function getWebPropertyRef() {
- return $this->webPropertyRef;
- }
- }