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\Transcoder; 19 20class OperationMetadata extends \Google\Model 21{ 22 public $apiVersion; 23 public $cancelRequested; 24 public $createTime; 25 public $endTime; 26 public $statusDetail; 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 setCancelRequested($cancelRequested) 39 { 40 $this->cancelRequested = $cancelRequested; 41 } 42 public function getCancelRequested() 43 { 44 return $this->cancelRequested; 45 } 46 public function setCreateTime($createTime) 47 { 48 $this->createTime = $createTime; 49 } 50 public function getCreateTime() 51 { 52 return $this->createTime; 53 } 54 public function setEndTime($endTime) 55 { 56 $this->endTime = $endTime; 57 } 58 public function getEndTime() 59 { 60 return $this->endTime; 61 } 62 public function setStatusDetail($statusDetail) 63 { 64 $this->statusDetail = $statusDetail; 65 } 66 public function getStatusDetail() 67 { 68 return $this->statusDetail; 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_Transcoder_OperationMetadata'); 90