Google_ProfileAttribution
The Google Books Importer Google ProfileAttribution class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_ModeratorService.php
- class Google_ProfileAttribution extends Google_Model {
- protected $__geoType = 'Google_ProfileAttributionGeo';
- protected $__geoDataType = '';
- public $geo;
- public $displayName;
- public $location;
- public $avatarUrl;
- public function setGeo(Google_ProfileAttributionGeo $geo) {
- $this->geo = $geo;
- }
- public function getGeo() {
- return $this->geo;
- }
- public function setDisplayName($displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setLocation($location) {
- $this->location = $location;
- }
- public function getLocation() {
- return $this->location;
- }
- public function setAvatarUrl($avatarUrl) {
- $this->avatarUrl = $avatarUrl;
- }
- public function getAvatarUrl() {
- return $this->avatarUrl;
- }
- }