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\SemanticTile; 19 20class SecondDerivativeElevationGrid extends \Google\Model 21{ 22 public $altitudeMultiplier; 23 public $columnCount; 24 public $encodedData; 25 public $rowCount; 26 27 public function setAltitudeMultiplier($altitudeMultiplier) 28 { 29 $this->altitudeMultiplier = $altitudeMultiplier; 30 } 31 public function getAltitudeMultiplier() 32 { 33 return $this->altitudeMultiplier; 34 } 35 public function setColumnCount($columnCount) 36 { 37 $this->columnCount = $columnCount; 38 } 39 public function getColumnCount() 40 { 41 return $this->columnCount; 42 } 43 public function setEncodedData($encodedData) 44 { 45 $this->encodedData = $encodedData; 46 } 47 public function getEncodedData() 48 { 49 return $this->encodedData; 50 } 51 public function setRowCount($rowCount) 52 { 53 $this->rowCount = $rowCount; 54 } 55 public function getRowCount() 56 { 57 return $this->rowCount; 58 } 59} 60 61// Adding a class alias for backwards compatibility with the previous class name. 62class_alias(SecondDerivativeElevationGrid::class, 'Google_Service_SemanticTile_SecondDerivativeElevationGrid'); 63