Google_PostAuthor
The Google Books Importer Google PostAuthor class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_BloggerService.php
- class Google_PostAuthor extends Google_Model {
- public $displayName;
- public $id;
- protected $__imageType = 'Google_PostAuthorImage';
- protected $__imageDataType = '';
- public $image;
- public $url;
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setImage(Google_PostAuthorImage $image) {
- $this->image = $image;
- }
- public function getImage() {
- return $this->image;
- }
- public function setUrl( $url) {
- $this->url = $url;
- }
- public function getUrl() {
- return $this->url;
- }
- }