112 lines
2.7 KiB
PHP
Executable File
112 lines
2.7 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
|
* the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations under
|
|
* the License.
|
|
*/
|
|
|
|
namespace Google\Service\ChecksService;
|
|
|
|
class GoogleChecksReportV1alphaReport extends \Google\Collection
|
|
{
|
|
protected $collection_key = 'checks';
|
|
protected $appBundleType = GoogleChecksReportV1alphaAppBundle::class;
|
|
protected $appBundleDataType = '';
|
|
protected $checksType = GoogleChecksReportV1alphaCheck::class;
|
|
protected $checksDataType = 'array';
|
|
protected $dataMonitoringType = GoogleChecksReportV1alphaDataMonitoring::class;
|
|
protected $dataMonitoringDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $name;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $resultsUri;
|
|
|
|
/**
|
|
* @param GoogleChecksReportV1alphaAppBundle
|
|
*/
|
|
public function setAppBundle(GoogleChecksReportV1alphaAppBundle $appBundle)
|
|
{
|
|
$this->appBundle = $appBundle;
|
|
}
|
|
/**
|
|
* @return GoogleChecksReportV1alphaAppBundle
|
|
*/
|
|
public function getAppBundle()
|
|
{
|
|
return $this->appBundle;
|
|
}
|
|
/**
|
|
* @param GoogleChecksReportV1alphaCheck[]
|
|
*/
|
|
public function setChecks($checks)
|
|
{
|
|
$this->checks = $checks;
|
|
}
|
|
/**
|
|
* @return GoogleChecksReportV1alphaCheck[]
|
|
*/
|
|
public function getChecks()
|
|
{
|
|
return $this->checks;
|
|
}
|
|
/**
|
|
* @param GoogleChecksReportV1alphaDataMonitoring
|
|
*/
|
|
public function setDataMonitoring(GoogleChecksReportV1alphaDataMonitoring $dataMonitoring)
|
|
{
|
|
$this->dataMonitoring = $dataMonitoring;
|
|
}
|
|
/**
|
|
* @return GoogleChecksReportV1alphaDataMonitoring
|
|
*/
|
|
public function getDataMonitoring()
|
|
{
|
|
return $this->dataMonitoring;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setResultsUri($resultsUri)
|
|
{
|
|
$this->resultsUri = $resultsUri;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getResultsUri()
|
|
{
|
|
return $this->resultsUri;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(GoogleChecksReportV1alphaReport::class, 'Google_Service_ChecksService_GoogleChecksReportV1alphaReport');
|