Google_Promotion
The Google Books Importer Google Promotion class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_CustomsearchService.php
- class Google_Promotion extends Google_Model {
- protected $__bodyLinesType = 'Google_PromotionBodyLines';
- protected $__bodyLinesDataType = 'array';
- public $bodyLines;
- public $displayLink;
- public $htmlTitle;
- protected $__imageType = 'Google_PromotionImage';
- protected $__imageDataType = '';
- public $image;
- public $link;
- public $title;
- public function setBodyLines(/** array(Google_PromotionBodyLines) */ $bodyLines) {
- $this->assertIsArray($bodyLines, 'Google_PromotionBodyLines', __METHOD__);
- $this->bodyLines = $bodyLines;
- }
- public function getBodyLines() {
- return $this->bodyLines;
- }
- public function setDisplayLink( $displayLink) {
- $this->displayLink = $displayLink;
- }
- public function getDisplayLink() {
- return $this->displayLink;
- }
- public function setHtmlTitle( $htmlTitle) {
- $this->htmlTitle = $htmlTitle;
- }
- public function getHtmlTitle() {
- return $this->htmlTitle;
- }
- public function setImage(Google_PromotionImage $image) {
- $this->image = $image;
- }
- public function getImage() {
- return $this->image;
- }
- public function setLink( $link) {
- $this->link = $link;
- }
- public function getLink() {
- return $this->link;
- }
- public function setTitle( $title) {
- $this->title = $title;
- }
- public function getTitle() {
- return $this->title;
- }
- }