Google_PropertyValue
The Google Books Importer Google PropertyValue class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_PropertyValue extends Google_Model {
- public $property;
- public $value;
- public function setProperty( $property) {
- $this->property = $property;
- }
- public function getProperty() {
- return $this->property;
- }
- public function setValue( $value) {
- $this->value = $value;
- }
- public function getValue() {
- return $this->value;
- }
- }