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 |
|
---|
18 | namespace Google\Service\Docs;
|
---|
19 |
|
---|
20 | class Response extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $createFooterType = CreateFooterResponse::class;
|
---|
23 | protected $createFooterDataType = '';
|
---|
24 | protected $createFootnoteType = CreateFootnoteResponse::class;
|
---|
25 | protected $createFootnoteDataType = '';
|
---|
26 | protected $createHeaderType = CreateHeaderResponse::class;
|
---|
27 | protected $createHeaderDataType = '';
|
---|
28 | protected $createNamedRangeType = CreateNamedRangeResponse::class;
|
---|
29 | protected $createNamedRangeDataType = '';
|
---|
30 | protected $insertInlineImageType = InsertInlineImageResponse::class;
|
---|
31 | protected $insertInlineImageDataType = '';
|
---|
32 | protected $insertInlineSheetsChartType = InsertInlineSheetsChartResponse::class;
|
---|
33 | protected $insertInlineSheetsChartDataType = '';
|
---|
34 | protected $replaceAllTextType = ReplaceAllTextResponse::class;
|
---|
35 | protected $replaceAllTextDataType = '';
|
---|
36 |
|
---|
37 | /**
|
---|
38 | * @param CreateFooterResponse
|
---|
39 | */
|
---|
40 | public function setCreateFooter(CreateFooterResponse $createFooter)
|
---|
41 | {
|
---|
42 | $this->createFooter = $createFooter;
|
---|
43 | }
|
---|
44 | /**
|
---|
45 | * @return CreateFooterResponse
|
---|
46 | */
|
---|
47 | public function getCreateFooter()
|
---|
48 | {
|
---|
49 | return $this->createFooter;
|
---|
50 | }
|
---|
51 | /**
|
---|
52 | * @param CreateFootnoteResponse
|
---|
53 | */
|
---|
54 | public function setCreateFootnote(CreateFootnoteResponse $createFootnote)
|
---|
55 | {
|
---|
56 | $this->createFootnote = $createFootnote;
|
---|
57 | }
|
---|
58 | /**
|
---|
59 | * @return CreateFootnoteResponse
|
---|
60 | */
|
---|
61 | public function getCreateFootnote()
|
---|
62 | {
|
---|
63 | return $this->createFootnote;
|
---|
64 | }
|
---|
65 | /**
|
---|
66 | * @param CreateHeaderResponse
|
---|
67 | */
|
---|
68 | public function setCreateHeader(CreateHeaderResponse $createHeader)
|
---|
69 | {
|
---|
70 | $this->createHeader = $createHeader;
|
---|
71 | }
|
---|
72 | /**
|
---|
73 | * @return CreateHeaderResponse
|
---|
74 | */
|
---|
75 | public function getCreateHeader()
|
---|
76 | {
|
---|
77 | return $this->createHeader;
|
---|
78 | }
|
---|
79 | /**
|
---|
80 | * @param CreateNamedRangeResponse
|
---|
81 | */
|
---|
82 | public function setCreateNamedRange(CreateNamedRangeResponse $createNamedRange)
|
---|
83 | {
|
---|
84 | $this->createNamedRange = $createNamedRange;
|
---|
85 | }
|
---|
86 | /**
|
---|
87 | * @return CreateNamedRangeResponse
|
---|
88 | */
|
---|
89 | public function getCreateNamedRange()
|
---|
90 | {
|
---|
91 | return $this->createNamedRange;
|
---|
92 | }
|
---|
93 | /**
|
---|
94 | * @param InsertInlineImageResponse
|
---|
95 | */
|
---|
96 | public function setInsertInlineImage(InsertInlineImageResponse $insertInlineImage)
|
---|
97 | {
|
---|
98 | $this->insertInlineImage = $insertInlineImage;
|
---|
99 | }
|
---|
100 | /**
|
---|
101 | * @return InsertInlineImageResponse
|
---|
102 | */
|
---|
103 | public function getInsertInlineImage()
|
---|
104 | {
|
---|
105 | return $this->insertInlineImage;
|
---|
106 | }
|
---|
107 | /**
|
---|
108 | * @param InsertInlineSheetsChartResponse
|
---|
109 | */
|
---|
110 | public function setInsertInlineSheetsChart(InsertInlineSheetsChartResponse $insertInlineSheetsChart)
|
---|
111 | {
|
---|
112 | $this->insertInlineSheetsChart = $insertInlineSheetsChart;
|
---|
113 | }
|
---|
114 | /**
|
---|
115 | * @return InsertInlineSheetsChartResponse
|
---|
116 | */
|
---|
117 | public function getInsertInlineSheetsChart()
|
---|
118 | {
|
---|
119 | return $this->insertInlineSheetsChart;
|
---|
120 | }
|
---|
121 | /**
|
---|
122 | * @param ReplaceAllTextResponse
|
---|
123 | */
|
---|
124 | public function setReplaceAllText(ReplaceAllTextResponse $replaceAllText)
|
---|
125 | {
|
---|
126 | $this->replaceAllText = $replaceAllText;
|
---|
127 | }
|
---|
128 | /**
|
---|
129 | * @return ReplaceAllTextResponse
|
---|
130 | */
|
---|
131 | public function getReplaceAllText()
|
---|
132 | {
|
---|
133 | return $this->replaceAllText;
|
---|
134 | }
|
---|
135 | }
|
---|
136 |
|
---|
137 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
138 | class_alias(Response::class, 'Google_Service_Docs_Response');
|
---|