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\RemoteBuildExecution;
19
20class GoogleDevtoolsRemotebuildbotResourceUsageIOStats extends \Google\Model
21{
22  public $readBytesCount;
23  public $readCount;
24  public $readTimeMs;
25  public $writeBytesCount;
26  public $writeCount;
27  public $writeTimeMs;
28
29  public function setReadBytesCount($readBytesCount)
30  {
31    $this->readBytesCount = $readBytesCount;
32  }
33  public function getReadBytesCount()
34  {
35    return $this->readBytesCount;
36  }
37  public function setReadCount($readCount)
38  {
39    $this->readCount = $readCount;
40  }
41  public function getReadCount()
42  {
43    return $this->readCount;
44  }
45  public function setReadTimeMs($readTimeMs)
46  {
47    $this->readTimeMs = $readTimeMs;
48  }
49  public function getReadTimeMs()
50  {
51    return $this->readTimeMs;
52  }
53  public function setWriteBytesCount($writeBytesCount)
54  {
55    $this->writeBytesCount = $writeBytesCount;
56  }
57  public function getWriteBytesCount()
58  {
59    return $this->writeBytesCount;
60  }
61  public function setWriteCount($writeCount)
62  {
63    $this->writeCount = $writeCount;
64  }
65  public function getWriteCount()
66  {
67    return $this->writeCount;
68  }
69  public function setWriteTimeMs($writeTimeMs)
70  {
71    $this->writeTimeMs = $writeTimeMs;
72  }
73  public function getWriteTimeMs()
74  {
75    return $this->writeTimeMs;
76  }
77}
78
79// Adding a class alias for backwards compatibility with the previous class name.
80class_alias(GoogleDevtoolsRemotebuildbotResourceUsageIOStats::class, 'Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotResourceUsageIOStats');
81