Google_Update
The Google Pagespeed Insights Google Update class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_PredictionService.php
- class Google_Update extends Google_Model {
- public $csvInstance;
- public $label;
- public function setCsvInstance(/** array(Google_object) */ $csvInstance) {
- $this->assertIsArray($csvInstance, 'Google_object', __METHOD__);
- $this->csvInstance = $csvInstance;
- }
- public function getCsvInstance() {
- return $this->csvInstance;
- }
- public function setLabel($label) {
- $this->label = $label;
- }
- public function getLabel() {
- return $this->label;
- }
- }