Google_PropertyFilter
The Google Books Importer Google PropertyFilter class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DatastoreService.php
- class Google_PropertyFilter extends Google_Model {
- public $operator;
- protected $__propertyType = 'Google_PropertyReference';
- protected $__propertyDataType = '';
- public $property;
- protected $__valueType = 'Google_Value';
- protected $__valueDataType = '';
- public $value;
- public function setOperator( $operator) {
- $this->operator = $operator;
- }
- public function getOperator() {
- return $this->operator;
- }
- public function setProperty(Google_PropertyReference $property) {
- $this->property = $property;
- }
- public function getProperty() {
- return $this->property;
- }
- public function setValue(Google_Value $value) {
- $this->value = $value;
- }
- public function getValue() {
- return $this->value;
- }
- }