Google_DetectionsListResponse
The Goolytics - Simple Google Analytics Google DetectionsListResponse class.
Defined (1)
The class is defined in the following location(s).
- /inc/google-api-php-client/src/contrib/Google_TranslateService.php
- class Google_DetectionsListResponse extends Google_Model {
- protected $__detectionsType = 'Google_DetectionsResourceItems';
- protected $__detectionsDataType = 'array';
- public $detections;
- public function setDetections(/** array(Google_DetectionsResourceItems) */ $detections) {
- $this->assertIsArray($detections, 'Google_DetectionsResourceItems', __METHOD__);
- $this->detections = $detections;
- }
- public function getDetections() {
- return $this->detections;
- }
- }