EVOLUTION-MANAGER
Edit File: GetTemplateResponse.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ class Google_Service_Dataflow_GetTemplateResponse extends Google_Model { protected $metadataType = 'Google_Service_Dataflow_TemplateMetadata'; protected $metadataDataType = ''; protected $runtimeMetadataType = 'Google_Service_Dataflow_RuntimeMetadata'; protected $runtimeMetadataDataType = ''; protected $statusType = 'Google_Service_Dataflow_Status'; protected $statusDataType = ''; public $templateType; /** * @param Google_Service_Dataflow_TemplateMetadata */ public function setMetadata(Google_Service_Dataflow_TemplateMetadata $metadata) { $this->metadata = $metadata; } /** * @return Google_Service_Dataflow_TemplateMetadata */ public function getMetadata() { return $this->metadata; } /** * @param Google_Service_Dataflow_RuntimeMetadata */ public function setRuntimeMetadata(Google_Service_Dataflow_RuntimeMetadata $runtimeMetadata) { $this->runtimeMetadata = $runtimeMetadata; } /** * @return Google_Service_Dataflow_RuntimeMetadata */ public function getRuntimeMetadata() { return $this->runtimeMetadata; } /** * @param Google_Service_Dataflow_Status */ public function setStatus(Google_Service_Dataflow_Status $status) { $this->status = $status; } /** * @return Google_Service_Dataflow_Status */ public function getStatus() { return $this->status; } public function setTemplateType($templateType) { $this->templateType = $templateType; } public function getTemplateType() { return $this->templateType; } }