Google_ProductsFacets
The Google Books Importer Google ProductsFacets class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_ShoppingService.php
- class Google_ProductsFacets extends Google_Model {
- protected $__bucketsType = 'Google_ProductsFacetsBuckets';
- protected $__bucketsDataType = 'array';
- public $buckets;
- public $count;
- public $displayName;
- public $name;
- public $property;
- public $type;
- public $unit;
- public function setBuckets(/** array(Google_ProductsFacetsBuckets) */ $buckets) {
- $this->assertIsArray($buckets, 'Google_ProductsFacetsBuckets', __METHOD__);
- $this->buckets = $buckets;
- }
- public function getBuckets() {
- return $this->buckets;
- }
- public function setCount( $count) {
- $this->count = $count;
- }
- public function getCount() {
- return $this->count;
- }
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setName( $name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setProperty( $property) {
- $this->property = $property;
- }
- public function getProperty() {
- return $this->property;
- }
- public function setType( $type) {
- $this->type = $type;
- }
- public function getType() {
- return $this->type;
- }
- public function setUnit( $unit) {
- $this->unit = $unit;
- }
- public function getUnit() {
- return $this->unit;
- }
- }