Google_Page
The WordPress Core Google Page class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_BloggerService.php
- class Google_Page extends Google_Model {
- protected $__authorType = 'Google_PageAuthor';
- protected $__authorDataType = '';
- public $author;
- protected $__blogType = 'Google_PageBlog';
- protected $__blogDataType = '';
- public $blog;
- public $content;
- public $id;
- public $kind;
- public $published;
- public $selfLink;
- public $title;
- public $updated;
- public $url;
- public function setAuthor(Google_PageAuthor $author) {
- $this->author = $author;
- }
- public function getAuthor() {
- return $this->author;
- }
- public function setBlog(Google_PageBlog $blog) {
- $this->blog = $blog;
- }
- public function getBlog() {
- return $this->blog;
- }
- public function setContent( $content) {
- $this->content = $content;
- }
- public function getContent() {
- return $this->content;
- }
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPublished( $published) {
- $this->published = $published;
- }
- public function getPublished() {
- return $this->published;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setTitle( $title) {
- $this->title = $title;
- }
- public function getTitle() {
- return $this->title;
- }
- public function setUpdated( $updated) {
- $this->updated = $updated;
- }
- public function getUpdated() {
- return $this->updated;
- }
- public function setUrl( $url) {
- $this->url = $url;
- }
- public function getUrl() {
- return $this->url;
- }
- }