Initial commit
This commit is contained in:
103
vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricUpdate.php
vendored
Normal file
103
vendor/google/apiclient-services/src/Google/Service/Dataflow/MetricUpdate.php
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Dataflow_MetricUpdate extends Google_Model
|
||||
{
|
||||
public $cumulative;
|
||||
public $internal;
|
||||
public $kind;
|
||||
public $meanCount;
|
||||
public $meanSum;
|
||||
protected $nameType = 'Google_Service_Dataflow_MetricStructuredName';
|
||||
protected $nameDataType = '';
|
||||
public $scalar;
|
||||
public $set;
|
||||
public $updateTime;
|
||||
|
||||
public function setCumulative($cumulative)
|
||||
{
|
||||
$this->cumulative = $cumulative;
|
||||
}
|
||||
public function getCumulative()
|
||||
{
|
||||
return $this->cumulative;
|
||||
}
|
||||
public function setInternal($internal)
|
||||
{
|
||||
$this->internal = $internal;
|
||||
}
|
||||
public function getInternal()
|
||||
{
|
||||
return $this->internal;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setMeanCount($meanCount)
|
||||
{
|
||||
$this->meanCount = $meanCount;
|
||||
}
|
||||
public function getMeanCount()
|
||||
{
|
||||
return $this->meanCount;
|
||||
}
|
||||
public function setMeanSum($meanSum)
|
||||
{
|
||||
$this->meanSum = $meanSum;
|
||||
}
|
||||
public function getMeanSum()
|
||||
{
|
||||
return $this->meanSum;
|
||||
}
|
||||
public function setName(Google_Service_Dataflow_MetricStructuredName $name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setScalar($scalar)
|
||||
{
|
||||
$this->scalar = $scalar;
|
||||
}
|
||||
public function getScalar()
|
||||
{
|
||||
return $this->scalar;
|
||||
}
|
||||
public function setSet($set)
|
||||
{
|
||||
$this->set = $set;
|
||||
}
|
||||
public function getSet()
|
||||
{
|
||||
return $this->set;
|
||||
}
|
||||
public function setUpdateTime($updateTime)
|
||||
{
|
||||
$this->updateTime = $updateTime;
|
||||
}
|
||||
public function getUpdateTime()
|
||||
{
|
||||
return $this->updateTime;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user