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\Docs; 19 20class ImagePropertiesSuggestionState extends \Google\Model 21{ 22 /** 23 * @var bool 24 */ 25 public $angleSuggested; 26 /** 27 * @var bool 28 */ 29 public $brightnessSuggested; 30 /** 31 * @var bool 32 */ 33 public $contentUriSuggested; 34 /** 35 * @var bool 36 */ 37 public $contrastSuggested; 38 protected $cropPropertiesSuggestionStateType = CropPropertiesSuggestionState::class; 39 protected $cropPropertiesSuggestionStateDataType = ''; 40 /** 41 * @var bool 42 */ 43 public $sourceUriSuggested; 44 /** 45 * @var bool 46 */ 47 public $transparencySuggested; 48 49 /** 50 * @param bool 51 */ 52 public function setAngleSuggested($angleSuggested) 53 { 54 $this->angleSuggested = $angleSuggested; 55 } 56 /** 57 * @return bool 58 */ 59 public function getAngleSuggested() 60 { 61 return $this->angleSuggested; 62 } 63 /** 64 * @param bool 65 */ 66 public function setBrightnessSuggested($brightnessSuggested) 67 { 68 $this->brightnessSuggested = $brightnessSuggested; 69 } 70 /** 71 * @return bool 72 */ 73 public function getBrightnessSuggested() 74 { 75 return $this->brightnessSuggested; 76 } 77 /** 78 * @param bool 79 */ 80 public function setContentUriSuggested($contentUriSuggested) 81 { 82 $this->contentUriSuggested = $contentUriSuggested; 83 } 84 /** 85 * @return bool 86 */ 87 public function getContentUriSuggested() 88 { 89 return $this->contentUriSuggested; 90 } 91 /** 92 * @param bool 93 */ 94 public function setContrastSuggested($contrastSuggested) 95 { 96 $this->contrastSuggested = $contrastSuggested; 97 } 98 /** 99 * @return bool 100 */ 101 public function getContrastSuggested() 102 { 103 return $this->contrastSuggested; 104 } 105 /** 106 * @param CropPropertiesSuggestionState 107 */ 108 public function setCropPropertiesSuggestionState(CropPropertiesSuggestionState $cropPropertiesSuggestionState) 109 { 110 $this->cropPropertiesSuggestionState = $cropPropertiesSuggestionState; 111 } 112 /** 113 * @return CropPropertiesSuggestionState 114 */ 115 public function getCropPropertiesSuggestionState() 116 { 117 return $this->cropPropertiesSuggestionState; 118 } 119 /** 120 * @param bool 121 */ 122 public function setSourceUriSuggested($sourceUriSuggested) 123 { 124 $this->sourceUriSuggested = $sourceUriSuggested; 125 } 126 /** 127 * @return bool 128 */ 129 public function getSourceUriSuggested() 130 { 131 return $this->sourceUriSuggested; 132 } 133 /** 134 * @param bool 135 */ 136 public function setTransparencySuggested($transparencySuggested) 137 { 138 $this->transparencySuggested = $transparencySuggested; 139 } 140 /** 141 * @return bool 142 */ 143 public function getTransparencySuggested() 144 { 145 return $this->transparencySuggested; 146 } 147} 148 149// Adding a class alias for backwards compatibility with the previous class name. 150class_alias(ImagePropertiesSuggestionState::class, 'Google_Service_Docs_ImagePropertiesSuggestionState'); 151