google_PreferredDeals
The Google Books Importer google PreferredDeals class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_AdExchangeSellerService.php
- class google_PreferredDeals extends Google_Model {
- protected $__itemsType = 'Google_PreferredDeal';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setItems(/** array(google_PreferredDeal) */ $items) {
- $this->assertIsArray($items, 'google_PreferredDeal', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }