source: vendor/google/apiclient-services/src/OracleDatabase/OperationMetadata.php

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

Upload project files

  • Property mode set to 100644
File size: 2.9 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\OracleDatabase;
19
20class OperationMetadata extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $apiVersion;
26 /**
27 * @var string
28 */
29 public $createTime;
30 /**
31 * @var string
32 */
33 public $endTime;
34 public $percentComplete;
35 /**
36 * @var bool
37 */
38 public $requestedCancellation;
39 /**
40 * @var string
41 */
42 public $statusMessage;
43 /**
44 * @var string
45 */
46 public $target;
47 /**
48 * @var string
49 */
50 public $verb;
51
52 /**
53 * @param string
54 */
55 public function setApiVersion($apiVersion)
56 {
57 $this->apiVersion = $apiVersion;
58 }
59 /**
60 * @return string
61 */
62 public function getApiVersion()
63 {
64 return $this->apiVersion;
65 }
66 /**
67 * @param string
68 */
69 public function setCreateTime($createTime)
70 {
71 $this->createTime = $createTime;
72 }
73 /**
74 * @return string
75 */
76 public function getCreateTime()
77 {
78 return $this->createTime;
79 }
80 /**
81 * @param string
82 */
83 public function setEndTime($endTime)
84 {
85 $this->endTime = $endTime;
86 }
87 /**
88 * @return string
89 */
90 public function getEndTime()
91 {
92 return $this->endTime;
93 }
94 public function setPercentComplete($percentComplete)
95 {
96 $this->percentComplete = $percentComplete;
97 }
98 public function getPercentComplete()
99 {
100 return $this->percentComplete;
101 }
102 /**
103 * @param bool
104 */
105 public function setRequestedCancellation($requestedCancellation)
106 {
107 $this->requestedCancellation = $requestedCancellation;
108 }
109 /**
110 * @return bool
111 */
112 public function getRequestedCancellation()
113 {
114 return $this->requestedCancellation;
115 }
116 /**
117 * @param string
118 */
119 public function setStatusMessage($statusMessage)
120 {
121 $this->statusMessage = $statusMessage;
122 }
123 /**
124 * @return string
125 */
126 public function getStatusMessage()
127 {
128 return $this->statusMessage;
129 }
130 /**
131 * @param string
132 */
133 public function setTarget($target)
134 {
135 $this->target = $target;
136 }
137 /**
138 * @return string
139 */
140 public function getTarget()
141 {
142 return $this->target;
143 }
144 /**
145 * @param string
146 */
147 public function setVerb($verb)
148 {
149 $this->verb = $verb;
150 }
151 /**
152 * @return string
153 */
154 public function getVerb()
155 {
156 return $this->verb;
157 }
158}
159
160// Adding a class alias for backwards compatibility with the previous class name.
161class_alias(OperationMetadata::class, 'Google_Service_OracleDatabase_OperationMetadata');
Note: See TracBrowser for help on using the repository browser.