source: vendor/google/apiclient-services/src/Docs/DocumentTab.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 5.0 KB
Line 
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 DocumentTab extends \Google\Model
21{
22 protected $bodyType = Body::class;
23 protected $bodyDataType = '';
24 protected $documentStyleType = DocumentStyle::class;
25 protected $documentStyleDataType = '';
26 protected $footersType = Footer::class;
27 protected $footersDataType = 'map';
28 protected $footnotesType = Footnote::class;
29 protected $footnotesDataType = 'map';
30 protected $headersType = Header::class;
31 protected $headersDataType = 'map';
32 protected $inlineObjectsType = InlineObject::class;
33 protected $inlineObjectsDataType = 'map';
34 protected $listsType = DocsList::class;
35 protected $listsDataType = 'map';
36 protected $namedRangesType = NamedRanges::class;
37 protected $namedRangesDataType = 'map';
38 protected $namedStylesType = NamedStyles::class;
39 protected $namedStylesDataType = '';
40 protected $positionedObjectsType = PositionedObject::class;
41 protected $positionedObjectsDataType = 'map';
42 protected $suggestedDocumentStyleChangesType = SuggestedDocumentStyle::class;
43 protected $suggestedDocumentStyleChangesDataType = 'map';
44 protected $suggestedNamedStylesChangesType = SuggestedNamedStyles::class;
45 protected $suggestedNamedStylesChangesDataType = 'map';
46
47 /**
48 * @param Body
49 */
50 public function setBody(Body $body)
51 {
52 $this->body = $body;
53 }
54 /**
55 * @return Body
56 */
57 public function getBody()
58 {
59 return $this->body;
60 }
61 /**
62 * @param DocumentStyle
63 */
64 public function setDocumentStyle(DocumentStyle $documentStyle)
65 {
66 $this->documentStyle = $documentStyle;
67 }
68 /**
69 * @return DocumentStyle
70 */
71 public function getDocumentStyle()
72 {
73 return $this->documentStyle;
74 }
75 /**
76 * @param Footer[]
77 */
78 public function setFooters($footers)
79 {
80 $this->footers = $footers;
81 }
82 /**
83 * @return Footer[]
84 */
85 public function getFooters()
86 {
87 return $this->footers;
88 }
89 /**
90 * @param Footnote[]
91 */
92 public function setFootnotes($footnotes)
93 {
94 $this->footnotes = $footnotes;
95 }
96 /**
97 * @return Footnote[]
98 */
99 public function getFootnotes()
100 {
101 return $this->footnotes;
102 }
103 /**
104 * @param Header[]
105 */
106 public function setHeaders($headers)
107 {
108 $this->headers = $headers;
109 }
110 /**
111 * @return Header[]
112 */
113 public function getHeaders()
114 {
115 return $this->headers;
116 }
117 /**
118 * @param InlineObject[]
119 */
120 public function setInlineObjects($inlineObjects)
121 {
122 $this->inlineObjects = $inlineObjects;
123 }
124 /**
125 * @return InlineObject[]
126 */
127 public function getInlineObjects()
128 {
129 return $this->inlineObjects;
130 }
131 /**
132 * @param DocsList[]
133 */
134 public function setLists($lists)
135 {
136 $this->lists = $lists;
137 }
138 /**
139 * @return DocsList[]
140 */
141 public function getLists()
142 {
143 return $this->lists;
144 }
145 /**
146 * @param NamedRanges[]
147 */
148 public function setNamedRanges($namedRanges)
149 {
150 $this->namedRanges = $namedRanges;
151 }
152 /**
153 * @return NamedRanges[]
154 */
155 public function getNamedRanges()
156 {
157 return $this->namedRanges;
158 }
159 /**
160 * @param NamedStyles
161 */
162 public function setNamedStyles(NamedStyles $namedStyles)
163 {
164 $this->namedStyles = $namedStyles;
165 }
166 /**
167 * @return NamedStyles
168 */
169 public function getNamedStyles()
170 {
171 return $this->namedStyles;
172 }
173 /**
174 * @param PositionedObject[]
175 */
176 public function setPositionedObjects($positionedObjects)
177 {
178 $this->positionedObjects = $positionedObjects;
179 }
180 /**
181 * @return PositionedObject[]
182 */
183 public function getPositionedObjects()
184 {
185 return $this->positionedObjects;
186 }
187 /**
188 * @param SuggestedDocumentStyle[]
189 */
190 public function setSuggestedDocumentStyleChanges($suggestedDocumentStyleChanges)
191 {
192 $this->suggestedDocumentStyleChanges = $suggestedDocumentStyleChanges;
193 }
194 /**
195 * @return SuggestedDocumentStyle[]
196 */
197 public function getSuggestedDocumentStyleChanges()
198 {
199 return $this->suggestedDocumentStyleChanges;
200 }
201 /**
202 * @param SuggestedNamedStyles[]
203 */
204 public function setSuggestedNamedStylesChanges($suggestedNamedStylesChanges)
205 {
206 $this->suggestedNamedStylesChanges = $suggestedNamedStylesChanges;
207 }
208 /**
209 * @return SuggestedNamedStyles[]
210 */
211 public function getSuggestedNamedStylesChanges()
212 {
213 return $this->suggestedNamedStylesChanges;
214 }
215}
216
217// Adding a class alias for backwards compatibility with the previous class name.
218class_alias(DocumentTab::class, 'Google_Service_Docs_DocumentTab');
Note: See TracBrowser for help on using the repository browser.