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\Baremetalsolution;
19
20class OperationMetadata extends \Google\Model
21{
22  public $apiVersion;
23  public $createTime;
24  public $endTime;
25  public $requestedCancellation;
26  public $statusMessage;
27  public $target;
28  public $verb;
29
30  public function setApiVersion($apiVersion)
31  {
32    $this->apiVersion = $apiVersion;
33  }
34  public function getApiVersion()
35  {
36    return $this->apiVersion;
37  }
38  public function setCreateTime($createTime)
39  {
40    $this->createTime = $createTime;
41  }
42  public function getCreateTime()
43  {
44    return $this->createTime;
45  }
46  public function setEndTime($endTime)
47  {
48    $this->endTime = $endTime;
49  }
50  public function getEndTime()
51  {
52    return $this->endTime;
53  }
54  public function setRequestedCancellation($requestedCancellation)
55  {
56    $this->requestedCancellation = $requestedCancellation;
57  }
58  public function getRequestedCancellation()
59  {
60    return $this->requestedCancellation;
61  }
62  public function setStatusMessage($statusMessage)
63  {
64    $this->statusMessage = $statusMessage;
65  }
66  public function getStatusMessage()
67  {
68    return $this->statusMessage;
69  }
70  public function setTarget($target)
71  {
72    $this->target = $target;
73  }
74  public function getTarget()
75  {
76    return $this->target;
77  }
78  public function setVerb($verb)
79  {
80    $this->verb = $verb;
81  }
82  public function getVerb()
83  {
84    return $this->verb;
85  }
86}
87
88// Adding a class alias for backwards compatibility with the previous class name.
89class_alias(OperationMetadata::class, 'Google_Service_Baremetalsolution_OperationMetadata');
90