|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace SForce\Wsdl; |
|
4
|
|
|
|
|
5
|
|
|
class DescribeLayout |
|
6
|
|
|
{ |
|
7
|
|
|
/** |
|
8
|
|
|
* @var DescribeLayoutButtonSection |
|
9
|
|
|
*/ |
|
10
|
|
|
protected $buttonLayoutSection = null; |
|
11
|
|
|
|
|
12
|
|
|
/** |
|
13
|
|
|
* @var DescribeLayoutSection[] |
|
14
|
|
|
*/ |
|
15
|
|
|
protected $detailLayoutSections = null; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* @var DescribeLayoutSection[] |
|
19
|
|
|
*/ |
|
20
|
|
|
protected $editLayoutSections = null; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* @var DescribeLayoutFeedView |
|
24
|
|
|
*/ |
|
25
|
|
|
protected $feedView = null; |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* @var DescribeLayoutSection |
|
29
|
|
|
*/ |
|
30
|
|
|
protected $highlightsPanelLayoutSection = null; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @var ID |
|
34
|
|
|
*/ |
|
35
|
|
|
protected $id = null; |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* @var DescribeQuickActionListResult |
|
39
|
|
|
*/ |
|
40
|
|
|
protected $quickActionList = null; |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @var RelatedContent |
|
44
|
|
|
*/ |
|
45
|
|
|
protected $relatedContent = null; |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* @var RelatedList[] |
|
49
|
|
|
*/ |
|
50
|
|
|
protected $relatedLists = null; |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* @var DescribeLayoutSaveOption[] |
|
54
|
|
|
*/ |
|
55
|
|
|
protected $saveOptions = null; |
|
56
|
|
|
|
|
57
|
|
|
public function __construct() |
|
58
|
|
|
{ |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* @return DescribeLayoutButtonSection |
|
63
|
|
|
*/ |
|
64
|
|
|
public function getButtonLayoutSection() |
|
65
|
|
|
{ |
|
66
|
|
|
return $this->buttonLayoutSection; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
/** |
|
70
|
|
|
* @param DescribeLayoutButtonSection $buttonLayoutSection |
|
71
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
72
|
|
|
*/ |
|
73
|
|
|
public function setButtonLayoutSection($buttonLayoutSection) |
|
74
|
|
|
{ |
|
75
|
|
|
$this->buttonLayoutSection = $buttonLayoutSection; |
|
76
|
|
|
return $this; |
|
77
|
|
|
} |
|
78
|
|
|
|
|
79
|
|
|
/** |
|
80
|
|
|
* @return DescribeLayoutSection[] |
|
81
|
|
|
*/ |
|
82
|
|
|
public function getDetailLayoutSections() |
|
83
|
|
|
{ |
|
84
|
|
|
return $this->detailLayoutSections; |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* @param DescribeLayoutSection[] $detailLayoutSections |
|
89
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
90
|
|
|
*/ |
|
91
|
|
|
public function setDetailLayoutSections(array $detailLayoutSections = null) |
|
92
|
|
|
{ |
|
93
|
|
|
$this->detailLayoutSections = $detailLayoutSections; |
|
94
|
|
|
return $this; |
|
95
|
|
|
} |
|
96
|
|
|
|
|
97
|
|
|
/** |
|
98
|
|
|
* @return DescribeLayoutSection[] |
|
99
|
|
|
*/ |
|
100
|
|
|
public function getEditLayoutSections() |
|
101
|
|
|
{ |
|
102
|
|
|
return $this->editLayoutSections; |
|
103
|
|
|
} |
|
104
|
|
|
|
|
105
|
|
|
/** |
|
106
|
|
|
* @param DescribeLayoutSection[] $editLayoutSections |
|
107
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
108
|
|
|
*/ |
|
109
|
|
|
public function setEditLayoutSections(array $editLayoutSections = null) |
|
110
|
|
|
{ |
|
111
|
|
|
$this->editLayoutSections = $editLayoutSections; |
|
112
|
|
|
return $this; |
|
113
|
|
|
} |
|
114
|
|
|
|
|
115
|
|
|
/** |
|
116
|
|
|
* @return DescribeLayoutFeedView |
|
117
|
|
|
*/ |
|
118
|
|
|
public function getFeedView() |
|
119
|
|
|
{ |
|
120
|
|
|
return $this->feedView; |
|
121
|
|
|
} |
|
122
|
|
|
|
|
123
|
|
|
/** |
|
124
|
|
|
* @param DescribeLayoutFeedView $feedView |
|
125
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
126
|
|
|
*/ |
|
127
|
|
|
public function setFeedView($feedView) |
|
128
|
|
|
{ |
|
129
|
|
|
$this->feedView = $feedView; |
|
130
|
|
|
return $this; |
|
131
|
|
|
} |
|
132
|
|
|
|
|
133
|
|
|
/** |
|
134
|
|
|
* @return DescribeLayoutSection |
|
135
|
|
|
*/ |
|
136
|
|
|
public function getHighlightsPanelLayoutSection() |
|
137
|
|
|
{ |
|
138
|
|
|
return $this->highlightsPanelLayoutSection; |
|
139
|
|
|
} |
|
140
|
|
|
|
|
141
|
|
|
/** |
|
142
|
|
|
* @param DescribeLayoutSection $highlightsPanelLayoutSection |
|
143
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
144
|
|
|
*/ |
|
145
|
|
|
public function setHighlightsPanelLayoutSection($highlightsPanelLayoutSection) |
|
146
|
|
|
{ |
|
147
|
|
|
$this->highlightsPanelLayoutSection = $highlightsPanelLayoutSection; |
|
148
|
|
|
return $this; |
|
149
|
|
|
} |
|
150
|
|
|
|
|
151
|
|
|
/** |
|
152
|
|
|
* @return ID |
|
153
|
|
|
*/ |
|
154
|
|
|
public function getId() |
|
155
|
|
|
{ |
|
156
|
|
|
return $this->id; |
|
157
|
|
|
} |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* @param ID $id |
|
161
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
162
|
|
|
*/ |
|
163
|
|
|
public function setId($id) |
|
164
|
|
|
{ |
|
165
|
|
|
$this->id = $id; |
|
166
|
|
|
return $this; |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
/** |
|
170
|
|
|
* @return DescribeQuickActionListResult |
|
171
|
|
|
*/ |
|
172
|
|
|
public function getQuickActionList() |
|
173
|
|
|
{ |
|
174
|
|
|
return $this->quickActionList; |
|
175
|
|
|
} |
|
176
|
|
|
|
|
177
|
|
|
/** |
|
178
|
|
|
* @param DescribeQuickActionListResult $quickActionList |
|
179
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
180
|
|
|
*/ |
|
181
|
|
|
public function setQuickActionList($quickActionList) |
|
182
|
|
|
{ |
|
183
|
|
|
$this->quickActionList = $quickActionList; |
|
184
|
|
|
return $this; |
|
185
|
|
|
} |
|
186
|
|
|
|
|
187
|
|
|
/** |
|
188
|
|
|
* @return RelatedContent |
|
189
|
|
|
*/ |
|
190
|
|
|
public function getRelatedContent() |
|
191
|
|
|
{ |
|
192
|
|
|
return $this->relatedContent; |
|
193
|
|
|
} |
|
194
|
|
|
|
|
195
|
|
|
/** |
|
196
|
|
|
* @param RelatedContent $relatedContent |
|
197
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
198
|
|
|
*/ |
|
199
|
|
|
public function setRelatedContent($relatedContent) |
|
200
|
|
|
{ |
|
201
|
|
|
$this->relatedContent = $relatedContent; |
|
202
|
|
|
return $this; |
|
203
|
|
|
} |
|
204
|
|
|
|
|
205
|
|
|
/** |
|
206
|
|
|
* @return RelatedList[] |
|
207
|
|
|
*/ |
|
208
|
|
|
public function getRelatedLists() |
|
209
|
|
|
{ |
|
210
|
|
|
return $this->relatedLists; |
|
211
|
|
|
} |
|
212
|
|
|
|
|
213
|
|
|
/** |
|
214
|
|
|
* @param RelatedList[] $relatedLists |
|
215
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
216
|
|
|
*/ |
|
217
|
|
|
public function setRelatedLists(array $relatedLists = null) |
|
218
|
|
|
{ |
|
219
|
|
|
$this->relatedLists = $relatedLists; |
|
220
|
|
|
return $this; |
|
221
|
|
|
} |
|
222
|
|
|
|
|
223
|
|
|
/** |
|
224
|
|
|
* @return DescribeLayoutSaveOption[] |
|
225
|
|
|
*/ |
|
226
|
|
|
public function getSaveOptions() |
|
227
|
|
|
{ |
|
228
|
|
|
return $this->saveOptions; |
|
229
|
|
|
} |
|
230
|
|
|
|
|
231
|
|
|
/** |
|
232
|
|
|
* @param DescribeLayoutSaveOption[] $saveOptions |
|
233
|
|
|
* @return \SForce\Wsdl\DescribeLayout |
|
234
|
|
|
*/ |
|
235
|
|
|
public function setSaveOptions(array $saveOptions = null) |
|
236
|
|
|
{ |
|
237
|
|
|
$this->saveOptions = $saveOptions; |
|
238
|
|
|
return $this; |
|
239
|
|
|
} |
|
240
|
|
|
} |
|
241
|
|
|
|