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\Dataflow; 19 20class ApproximateReportedProgress extends \Google\Model 21{ 22 protected $consumedParallelismType = ReportedParallelism::class; 23 protected $consumedParallelismDataType = ''; 24 public $fractionConsumed; 25 protected $positionType = Position::class; 26 protected $positionDataType = ''; 27 protected $remainingParallelismType = ReportedParallelism::class; 28 protected $remainingParallelismDataType = ''; 29 30 /** 31 * @param ReportedParallelism 32 */ 33 public function setConsumedParallelism(ReportedParallelism $consumedParallelism) 34 { 35 $this->consumedParallelism = $consumedParallelism; 36 } 37 /** 38 * @return ReportedParallelism 39 */ 40 public function getConsumedParallelism() 41 { 42 return $this->consumedParallelism; 43 } 44 public function setFractionConsumed($fractionConsumed) 45 { 46 $this->fractionConsumed = $fractionConsumed; 47 } 48 public function getFractionConsumed() 49 { 50 return $this->fractionConsumed; 51 } 52 /** 53 * @param Position 54 */ 55 public function setPosition(Position $position) 56 { 57 $this->position = $position; 58 } 59 /** 60 * @return Position 61 */ 62 public function getPosition() 63 { 64 return $this->position; 65 } 66 /** 67 * @param ReportedParallelism 68 */ 69 public function setRemainingParallelism(ReportedParallelism $remainingParallelism) 70 { 71 $this->remainingParallelism = $remainingParallelism; 72 } 73 /** 74 * @return ReportedParallelism 75 */ 76 public function getRemainingParallelism() 77 { 78 return $this->remainingParallelism; 79 } 80} 81 82// Adding a class alias for backwards compatibility with the previous class name. 83class_alias(ApproximateReportedProgress::class, 'Google_Service_Dataflow_ApproximateReportedProgress'); 84