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\Slides;
|
---|
19 |
|
---|
20 | class LineProperties extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $dashStyle;
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $endArrow;
|
---|
30 | protected $endConnectionType = LineConnection::class;
|
---|
31 | protected $endConnectionDataType = '';
|
---|
32 | protected $lineFillType = LineFill::class;
|
---|
33 | protected $lineFillDataType = '';
|
---|
34 | protected $linkType = Link::class;
|
---|
35 | protected $linkDataType = '';
|
---|
36 | /**
|
---|
37 | * @var string
|
---|
38 | */
|
---|
39 | public $startArrow;
|
---|
40 | protected $startConnectionType = LineConnection::class;
|
---|
41 | protected $startConnectionDataType = '';
|
---|
42 | protected $weightType = Dimension::class;
|
---|
43 | protected $weightDataType = '';
|
---|
44 |
|
---|
45 | /**
|
---|
46 | * @param string
|
---|
47 | */
|
---|
48 | public function setDashStyle($dashStyle)
|
---|
49 | {
|
---|
50 | $this->dashStyle = $dashStyle;
|
---|
51 | }
|
---|
52 | /**
|
---|
53 | * @return string
|
---|
54 | */
|
---|
55 | public function getDashStyle()
|
---|
56 | {
|
---|
57 | return $this->dashStyle;
|
---|
58 | }
|
---|
59 | /**
|
---|
60 | * @param string
|
---|
61 | */
|
---|
62 | public function setEndArrow($endArrow)
|
---|
63 | {
|
---|
64 | $this->endArrow = $endArrow;
|
---|
65 | }
|
---|
66 | /**
|
---|
67 | * @return string
|
---|
68 | */
|
---|
69 | public function getEndArrow()
|
---|
70 | {
|
---|
71 | return $this->endArrow;
|
---|
72 | }
|
---|
73 | /**
|
---|
74 | * @param LineConnection
|
---|
75 | */
|
---|
76 | public function setEndConnection(LineConnection $endConnection)
|
---|
77 | {
|
---|
78 | $this->endConnection = $endConnection;
|
---|
79 | }
|
---|
80 | /**
|
---|
81 | * @return LineConnection
|
---|
82 | */
|
---|
83 | public function getEndConnection()
|
---|
84 | {
|
---|
85 | return $this->endConnection;
|
---|
86 | }
|
---|
87 | /**
|
---|
88 | * @param LineFill
|
---|
89 | */
|
---|
90 | public function setLineFill(LineFill $lineFill)
|
---|
91 | {
|
---|
92 | $this->lineFill = $lineFill;
|
---|
93 | }
|
---|
94 | /**
|
---|
95 | * @return LineFill
|
---|
96 | */
|
---|
97 | public function getLineFill()
|
---|
98 | {
|
---|
99 | return $this->lineFill;
|
---|
100 | }
|
---|
101 | /**
|
---|
102 | * @param Link
|
---|
103 | */
|
---|
104 | public function setLink(Link $link)
|
---|
105 | {
|
---|
106 | $this->link = $link;
|
---|
107 | }
|
---|
108 | /**
|
---|
109 | * @return Link
|
---|
110 | */
|
---|
111 | public function getLink()
|
---|
112 | {
|
---|
113 | return $this->link;
|
---|
114 | }
|
---|
115 | /**
|
---|
116 | * @param string
|
---|
117 | */
|
---|
118 | public function setStartArrow($startArrow)
|
---|
119 | {
|
---|
120 | $this->startArrow = $startArrow;
|
---|
121 | }
|
---|
122 | /**
|
---|
123 | * @return string
|
---|
124 | */
|
---|
125 | public function getStartArrow()
|
---|
126 | {
|
---|
127 | return $this->startArrow;
|
---|
128 | }
|
---|
129 | /**
|
---|
130 | * @param LineConnection
|
---|
131 | */
|
---|
132 | public function setStartConnection(LineConnection $startConnection)
|
---|
133 | {
|
---|
134 | $this->startConnection = $startConnection;
|
---|
135 | }
|
---|
136 | /**
|
---|
137 | * @return LineConnection
|
---|
138 | */
|
---|
139 | public function getStartConnection()
|
---|
140 | {
|
---|
141 | return $this->startConnection;
|
---|
142 | }
|
---|
143 | /**
|
---|
144 | * @param Dimension
|
---|
145 | */
|
---|
146 | public function setWeight(Dimension $weight)
|
---|
147 | {
|
---|
148 | $this->weight = $weight;
|
---|
149 | }
|
---|
150 | /**
|
---|
151 | * @return Dimension
|
---|
152 | */
|
---|
153 | public function getWeight()
|
---|
154 | {
|
---|
155 | return $this->weight;
|
---|
156 | }
|
---|
157 | }
|
---|
158 |
|
---|
159 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
160 | class_alias(LineProperties::class, 'Google_Service_Slides_LineProperties');
|
---|