Google_Quota
The Google Pagespeed Insights Google Quota class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ComputeService.php
- class Google_Quota extends Google_Model {
- public $limit;
- public $metric;
- public $usage;
- public function setLimit($limit) {
- $this->limit = $limit;
- }
- public function getLimit() {
- return $this->limit;
- }
- public function setMetric($metric) {
- $this->metric = $metric;
- }
- public function getMetric() {
- return $this->metric;
- }
- public function setUsage($usage) {
- $this->usage = $usage;
- }
- public function getUsage() {
- return $this->usage;
- }
- }