source: vendor/google/apiclient-services/src/Integrations/EnterpriseCrmEventbusStats.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 2.0 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Integrations;
19
20class EnterpriseCrmEventbusStats extends \Google\Model
21{
22 protected $dimensionsType = EnterpriseCrmEventbusStatsDimensions::class;
23 protected $dimensionsDataType = '';
24 public $durationInSeconds;
25 public $errorRate;
26 public $qps;
27 public $warningRate;
28
29 /**
30 * @param EnterpriseCrmEventbusStatsDimensions
31 */
32 public function setDimensions(EnterpriseCrmEventbusStatsDimensions $dimensions)
33 {
34 $this->dimensions = $dimensions;
35 }
36 /**
37 * @return EnterpriseCrmEventbusStatsDimensions
38 */
39 public function getDimensions()
40 {
41 return $this->dimensions;
42 }
43 public function setDurationInSeconds($durationInSeconds)
44 {
45 $this->durationInSeconds = $durationInSeconds;
46 }
47 public function getDurationInSeconds()
48 {
49 return $this->durationInSeconds;
50 }
51 public function setErrorRate($errorRate)
52 {
53 $this->errorRate = $errorRate;
54 }
55 public function getErrorRate()
56 {
57 return $this->errorRate;
58 }
59 public function setQps($qps)
60 {
61 $this->qps = $qps;
62 }
63 public function getQps()
64 {
65 return $this->qps;
66 }
67 public function setWarningRate($warningRate)
68 {
69 $this->warningRate = $warningRate;
70 }
71 public function getWarningRate()
72 {
73 return $this->warningRate;
74 }
75}
76
77// Adding a class alias for backwards compatibility with the previous class name.
78class_alias(EnterpriseCrmEventbusStats::class, 'Google_Service_Integrations_EnterpriseCrmEventbusStats');
Note: See TracBrowser for help on using the repository browser.