Google_Output
The Google Books Importer Google Output class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_PredictionService.php
- class Google_Output extends Google_Model {
- public $id;
- public $kind;
- public $outputLabel;
- protected $__outputMultiType = 'Google_OutputOutputMulti';
- protected $__outputMultiDataType = 'array';
- public $outputMulti;
- public $outputValue;
- public $selfLink;
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setOutputLabel( $outputLabel) {
- $this->outputLabel = $outputLabel;
- }
- public function getOutputLabel() {
- return $this->outputLabel;
- }
- public function setOutputMulti(/** array(Google_OutputOutputMulti) */ $outputMulti) {
- $this->assertIsArray($outputMulti, 'Google_OutputOutputMulti', __METHOD__);
- $this->outputMulti = $outputMulti;
- }
- public function getOutputMulti() {
- return $this->outputMulti;
- }
- public function setOutputValue( $outputValue) {
- $this->outputValue = $outputValue;
- }
- public function getOutputValue() {
- return $this->outputValue;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- }