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\Appengine; 19 20class GoogleAppengineV2OperationMetadata extends \Google\Collection 21{ 22 protected $collection_key = 'warning'; 23 public $apiVersion; 24 public $createTime; 25 public $endTime; 26 public $ephemeralMessage; 27 public $requestedCancellation; 28 public $statusMessage; 29 public $target; 30 public $verb; 31 public $warning; 32 33 public function setApiVersion($apiVersion) 34 { 35 $this->apiVersion = $apiVersion; 36 } 37 public function getApiVersion() 38 { 39 return $this->apiVersion; 40 } 41 public function setCreateTime($createTime) 42 { 43 $this->createTime = $createTime; 44 } 45 public function getCreateTime() 46 { 47 return $this->createTime; 48 } 49 public function setEndTime($endTime) 50 { 51 $this->endTime = $endTime; 52 } 53 public function getEndTime() 54 { 55 return $this->endTime; 56 } 57 public function setEphemeralMessage($ephemeralMessage) 58 { 59 $this->ephemeralMessage = $ephemeralMessage; 60 } 61 public function getEphemeralMessage() 62 { 63 return $this->ephemeralMessage; 64 } 65 public function setRequestedCancellation($requestedCancellation) 66 { 67 $this->requestedCancellation = $requestedCancellation; 68 } 69 public function getRequestedCancellation() 70 { 71 return $this->requestedCancellation; 72 } 73 public function setStatusMessage($statusMessage) 74 { 75 $this->statusMessage = $statusMessage; 76 } 77 public function getStatusMessage() 78 { 79 return $this->statusMessage; 80 } 81 public function setTarget($target) 82 { 83 $this->target = $target; 84 } 85 public function getTarget() 86 { 87 return $this->target; 88 } 89 public function setVerb($verb) 90 { 91 $this->verb = $verb; 92 } 93 public function getVerb() 94 { 95 return $this->verb; 96 } 97 public function setWarning($warning) 98 { 99 $this->warning = $warning; 100 } 101 public function getWarning() 102 { 103 return $this->warning; 104 } 105} 106 107// Adding a class alias for backwards compatibility with the previous class name. 108class_alias(GoogleAppengineV2OperationMetadata::class, 'Google_Service_Appengine_GoogleAppengineV2OperationMetadata'); 109