Google_Property
The Google Books Importer Google Property class.
Defined (2)
The class is defined in the following location(s).
- /src/contrib/Google_DatastoreService.php
- class Google_Property extends Google_Model {
- public $multi;
- protected $__valuesType = 'Google_Value';
- protected $__valuesDataType = 'array';
- public $values;
- public function setMulti( $multi) {
- $this->multi = $multi;
- }
- public function getMulti() {
- return $this->multi;
- }
- public function setValues(/** array(Google_Value) */ $values) {
- $this->assertIsArray($values, 'Google_Value', __METHOD__);
- $this->values = $values;
- }
- public function getValues() {
- return $this->values;
- }
- }
- /src/contrib/Google_DriveService.php
- class Google_Property extends Google_Model {
- public $etag;
- public $key;
- public $kind;
- public $selfLink;
- public $value;
- public $visibility;
- public function setEtag( $etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setKey( $key) {
- $this->key = $key;
- }
- public function getKey() {
- return $this->key;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setValue( $value) {
- $this->value = $value;
- }
- public function getValue() {
- return $this->value;
- }
- public function setVisibility( $visibility) {
- $this->visibility = $visibility;
- }
- public function getVisibility() {
- return $this->visibility;
- }
- }