source: vendor/google/apiclient-services/src/Sheets/UpdateBordersRequest.php

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

Upload project files

  • Property mode set to 100644
File size: 2.9 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\Sheets;
19
20class UpdateBordersRequest extends \Google\Model
21{
22 protected $bottomType = Border::class;
23 protected $bottomDataType = '';
24 protected $innerHorizontalType = Border::class;
25 protected $innerHorizontalDataType = '';
26 protected $innerVerticalType = Border::class;
27 protected $innerVerticalDataType = '';
28 protected $leftType = Border::class;
29 protected $leftDataType = '';
30 protected $rangeType = GridRange::class;
31 protected $rangeDataType = '';
32 protected $rightType = Border::class;
33 protected $rightDataType = '';
34 protected $topType = Border::class;
35 protected $topDataType = '';
36
37 /**
38 * @param Border
39 */
40 public function setBottom(Border $bottom)
41 {
42 $this->bottom = $bottom;
43 }
44 /**
45 * @return Border
46 */
47 public function getBottom()
48 {
49 return $this->bottom;
50 }
51 /**
52 * @param Border
53 */
54 public function setInnerHorizontal(Border $innerHorizontal)
55 {
56 $this->innerHorizontal = $innerHorizontal;
57 }
58 /**
59 * @return Border
60 */
61 public function getInnerHorizontal()
62 {
63 return $this->innerHorizontal;
64 }
65 /**
66 * @param Border
67 */
68 public function setInnerVertical(Border $innerVertical)
69 {
70 $this->innerVertical = $innerVertical;
71 }
72 /**
73 * @return Border
74 */
75 public function getInnerVertical()
76 {
77 return $this->innerVertical;
78 }
79 /**
80 * @param Border
81 */
82 public function setLeft(Border $left)
83 {
84 $this->left = $left;
85 }
86 /**
87 * @return Border
88 */
89 public function getLeft()
90 {
91 return $this->left;
92 }
93 /**
94 * @param GridRange
95 */
96 public function setRange(GridRange $range)
97 {
98 $this->range = $range;
99 }
100 /**
101 * @return GridRange
102 */
103 public function getRange()
104 {
105 return $this->range;
106 }
107 /**
108 * @param Border
109 */
110 public function setRight(Border $right)
111 {
112 $this->right = $right;
113 }
114 /**
115 * @return Border
116 */
117 public function getRight()
118 {
119 return $this->right;
120 }
121 /**
122 * @param Border
123 */
124 public function setTop(Border $top)
125 {
126 $this->top = $top;
127 }
128 /**
129 * @return Border
130 */
131 public function getTop()
132 {
133 return $this->top;
134 }
135}
136
137// Adding a class alias for backwards compatibility with the previous class name.
138class_alias(UpdateBordersRequest::class, 'Google_Service_Sheets_UpdateBordersRequest');
Note: See TracBrowser for help on using the repository browser.