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 GoogleDevtoolsRemotebuildbotCommandDurations extends \Google\Model
21{
22  public $casRelease;
23  public $cmWaitForAssignment;
24  public $dockerPrep;
25  public $dockerPrepStartTime;
26  public $download;
27  public $downloadStartTime;
28  public $execStartTime;
29  public $execution;
30  public $isoPrepDone;
31  public $overall;
32  public $stdout;
33  public $upload;
34  public $uploadStartTime;
35
36  public function setCasRelease($casRelease)
37  {
38    $this->casRelease = $casRelease;
39  }
40  public function getCasRelease()
41  {
42    return $this->casRelease;
43  }
44  public function setCmWaitForAssignment($cmWaitForAssignment)
45  {
46    $this->cmWaitForAssignment = $cmWaitForAssignment;
47  }
48  public function getCmWaitForAssignment()
49  {
50    return $this->cmWaitForAssignment;
51  }
52  public function setDockerPrep($dockerPrep)
53  {
54    $this->dockerPrep = $dockerPrep;
55  }
56  public function getDockerPrep()
57  {
58    return $this->dockerPrep;
59  }
60  public function setDockerPrepStartTime($dockerPrepStartTime)
61  {
62    $this->dockerPrepStartTime = $dockerPrepStartTime;
63  }
64  public function getDockerPrepStartTime()
65  {
66    return $this->dockerPrepStartTime;
67  }
68  public function setDownload($download)
69  {
70    $this->download = $download;
71  }
72  public function getDownload()
73  {
74    return $this->download;
75  }
76  public function setDownloadStartTime($downloadStartTime)
77  {
78    $this->downloadStartTime = $downloadStartTime;
79  }
80  public function getDownloadStartTime()
81  {
82    return $this->downloadStartTime;
83  }
84  public function setExecStartTime($execStartTime)
85  {
86    $this->execStartTime = $execStartTime;
87  }
88  public function getExecStartTime()
89  {
90    return $this->execStartTime;
91  }
92  public function setExecution($execution)
93  {
94    $this->execution = $execution;
95  }
96  public function getExecution()
97  {
98    return $this->execution;
99  }
100  public function setIsoPrepDone($isoPrepDone)
101  {
102    $this->isoPrepDone = $isoPrepDone;
103  }
104  public function getIsoPrepDone()
105  {
106    return $this->isoPrepDone;
107  }
108  public function setOverall($overall)
109  {
110    $this->overall = $overall;
111  }
112  public function getOverall()
113  {
114    return $this->overall;
115  }
116  public function setStdout($stdout)
117  {
118    $this->stdout = $stdout;
119  }
120  public function getStdout()
121  {
122    return $this->stdout;
123  }
124  public function setUpload($upload)
125  {
126    $this->upload = $upload;
127  }
128  public function getUpload()
129  {
130    return $this->upload;
131  }
132  public function setUploadStartTime($uploadStartTime)
133  {
134    $this->uploadStartTime = $uploadStartTime;
135  }
136  public function getUploadStartTime()
137  {
138    return $this->uploadStartTime;
139  }
140}
141
142// Adding a class alias for backwards compatibility with the previous class name.
143class_alias(GoogleDevtoolsRemotebuildbotCommandDurations::class, 'Google_Service_RemoteBuildExecution_GoogleDevtoolsRemotebuildbotCommandDurations');
144