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\Slides; 19 20class Response extends \Google\Model 21{ 22 protected $createImageType = CreateImageResponse::class; 23 protected $createImageDataType = ''; 24 protected $createLineType = CreateLineResponse::class; 25 protected $createLineDataType = ''; 26 protected $createShapeType = CreateShapeResponse::class; 27 protected $createShapeDataType = ''; 28 protected $createSheetsChartType = CreateSheetsChartResponse::class; 29 protected $createSheetsChartDataType = ''; 30 protected $createSlideType = CreateSlideResponse::class; 31 protected $createSlideDataType = ''; 32 protected $createTableType = CreateTableResponse::class; 33 protected $createTableDataType = ''; 34 protected $createVideoType = CreateVideoResponse::class; 35 protected $createVideoDataType = ''; 36 protected $duplicateObjectType = DuplicateObjectResponse::class; 37 protected $duplicateObjectDataType = ''; 38 protected $groupObjectsType = GroupObjectsResponse::class; 39 protected $groupObjectsDataType = ''; 40 protected $replaceAllShapesWithImageType = ReplaceAllShapesWithImageResponse::class; 41 protected $replaceAllShapesWithImageDataType = ''; 42 protected $replaceAllShapesWithSheetsChartType = ReplaceAllShapesWithSheetsChartResponse::class; 43 protected $replaceAllShapesWithSheetsChartDataType = ''; 44 protected $replaceAllTextType = ReplaceAllTextResponse::class; 45 protected $replaceAllTextDataType = ''; 46 47 /** 48 * @param CreateImageResponse 49 */ 50 public function setCreateImage(CreateImageResponse $createImage) 51 { 52 $this->createImage = $createImage; 53 } 54 /** 55 * @return CreateImageResponse 56 */ 57 public function getCreateImage() 58 { 59 return $this->createImage; 60 } 61 /** 62 * @param CreateLineResponse 63 */ 64 public function setCreateLine(CreateLineResponse $createLine) 65 { 66 $this->createLine = $createLine; 67 } 68 /** 69 * @return CreateLineResponse 70 */ 71 public function getCreateLine() 72 { 73 return $this->createLine; 74 } 75 /** 76 * @param CreateShapeResponse 77 */ 78 public function setCreateShape(CreateShapeResponse $createShape) 79 { 80 $this->createShape = $createShape; 81 } 82 /** 83 * @return CreateShapeResponse 84 */ 85 public function getCreateShape() 86 { 87 return $this->createShape; 88 } 89 /** 90 * @param CreateSheetsChartResponse 91 */ 92 public function setCreateSheetsChart(CreateSheetsChartResponse $createSheetsChart) 93 { 94 $this->createSheetsChart = $createSheetsChart; 95 } 96 /** 97 * @return CreateSheetsChartResponse 98 */ 99 public function getCreateSheetsChart() 100 { 101 return $this->createSheetsChart; 102 } 103 /** 104 * @param CreateSlideResponse 105 */ 106 public function setCreateSlide(CreateSlideResponse $createSlide) 107 { 108 $this->createSlide = $createSlide; 109 } 110 /** 111 * @return CreateSlideResponse 112 */ 113 public function getCreateSlide() 114 { 115 return $this->createSlide; 116 } 117 /** 118 * @param CreateTableResponse 119 */ 120 public function setCreateTable(CreateTableResponse $createTable) 121 { 122 $this->createTable = $createTable; 123 } 124 /** 125 * @return CreateTableResponse 126 */ 127 public function getCreateTable() 128 { 129 return $this->createTable; 130 } 131 /** 132 * @param CreateVideoResponse 133 */ 134 public function setCreateVideo(CreateVideoResponse $createVideo) 135 { 136 $this->createVideo = $createVideo; 137 } 138 /** 139 * @return CreateVideoResponse 140 */ 141 public function getCreateVideo() 142 { 143 return $this->createVideo; 144 } 145 /** 146 * @param DuplicateObjectResponse 147 */ 148 public function setDuplicateObject(DuplicateObjectResponse $duplicateObject) 149 { 150 $this->duplicateObject = $duplicateObject; 151 } 152 /** 153 * @return DuplicateObjectResponse 154 */ 155 public function getDuplicateObject() 156 { 157 return $this->duplicateObject; 158 } 159 /** 160 * @param GroupObjectsResponse 161 */ 162 public function setGroupObjects(GroupObjectsResponse $groupObjects) 163 { 164 $this->groupObjects = $groupObjects; 165 } 166 /** 167 * @return GroupObjectsResponse 168 */ 169 public function getGroupObjects() 170 { 171 return $this->groupObjects; 172 } 173 /** 174 * @param ReplaceAllShapesWithImageResponse 175 */ 176 public function setReplaceAllShapesWithImage(ReplaceAllShapesWithImageResponse $replaceAllShapesWithImage) 177 { 178 $this->replaceAllShapesWithImage = $replaceAllShapesWithImage; 179 } 180 /** 181 * @return ReplaceAllShapesWithImageResponse 182 */ 183 public function getReplaceAllShapesWithImage() 184 { 185 return $this->replaceAllShapesWithImage; 186 } 187 /** 188 * @param ReplaceAllShapesWithSheetsChartResponse 189 */ 190 public function setReplaceAllShapesWithSheetsChart(ReplaceAllShapesWithSheetsChartResponse $replaceAllShapesWithSheetsChart) 191 { 192 $this->replaceAllShapesWithSheetsChart = $replaceAllShapesWithSheetsChart; 193 } 194 /** 195 * @return ReplaceAllShapesWithSheetsChartResponse 196 */ 197 public function getReplaceAllShapesWithSheetsChart() 198 { 199 return $this->replaceAllShapesWithSheetsChart; 200 } 201 /** 202 * @param ReplaceAllTextResponse 203 */ 204 public function setReplaceAllText(ReplaceAllTextResponse $replaceAllText) 205 { 206 $this->replaceAllText = $replaceAllText; 207 } 208 /** 209 * @return ReplaceAllTextResponse 210 */ 211 public function getReplaceAllText() 212 { 213 return $this->replaceAllText; 214 } 215} 216 217// Adding a class alias for backwards compatibility with the previous class name. 218class_alias(Response::class, 'Google_Service_Slides_Response'); 219