Passed
Push — master ( c40630...f0da52 )
by Nicolaas
08:09 queued 05:18
created

setCanvasApplicationName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 4
rs 10
1
<?php
2
3
namespace SForce\Wsdl;
4
5
class DescribeQuickActionResult
6
{
7
8
    /**
9
     * @var ShareAccessLevel $accessLevelRequired
10
     */
11
    protected $accessLevelRequired = null;
12
13
    /**
14
     * @var string $actionEnumOrId
15
     */
16
    protected $actionEnumOrId = null;
17
18
    /**
19
     * @var ID $canvasApplicationId
20
     */
21
    protected $canvasApplicationId = null;
22
23
    /**
24
     * @var string $canvasApplicationName
25
     */
26
    protected $canvasApplicationName = null;
27
28
    /**
29
     * @var DescribeColor[] $colors
30
     */
31
    protected $colors = null;
32
33
    /**
34
     * @var string $contextSobjectType
35
     */
36
    protected $contextSobjectType = null;
37
38
    /**
39
     * @var DescribeQuickActionDefaultValue[] $defaultValues
40
     */
41
    protected $defaultValues = null;
42
43
    /**
44
     * @var string $flowDevName
45
     */
46
    protected $flowDevName = null;
47
48
    /**
49
     * @var string $flowRecordIdVar
50
     */
51
    protected $flowRecordIdVar = null;
52
53
    /**
54
     * @var int $height
55
     */
56
    protected $height = null;
57
58
    /**
59
     * @var string $iconName
60
     */
61
    protected $iconName = null;
62
63
    /**
64
     * @var string $iconUrl
65
     */
66
    protected $iconUrl = null;
67
68
    /**
69
     * @var DescribeIcon[] $icons
70
     */
71
    protected $icons = null;
72
73
    /**
74
     * @var string $label
75
     */
76
    protected $label = null;
77
78
    /**
79
     * @var DescribeLayoutSection $layout
80
     */
81
    protected $layout = null;
82
83
    /**
84
     * @var ID $lightningComponentBundleId
85
     */
86
    protected $lightningComponentBundleId = null;
87
88
    /**
89
     * @var string $lightningComponentBundleName
90
     */
91
    protected $lightningComponentBundleName = null;
92
93
    /**
94
     * @var string $lightningComponentQualifiedName
95
     */
96
    protected $lightningComponentQualifiedName = null;
97
98
    /**
99
     * @var string $miniIconUrl
100
     */
101
    protected $miniIconUrl = null;
102
103
    /**
104
     * @var string $name
105
     */
106
    protected $name = null;
107
108
    /**
109
     * @var boolean $showQuickActionLcHeader
110
     */
111
    protected $showQuickActionLcHeader = null;
112
113
    /**
114
     * @var boolean $showQuickActionVfHeader
115
     */
116
    protected $showQuickActionVfHeader = null;
117
118
    /**
119
     * @var string $targetParentField
120
     */
121
    protected $targetParentField = null;
122
123
    /**
124
     * @var ID $targetRecordTypeId
125
     */
126
    protected $targetRecordTypeId = null;
127
128
    /**
129
     * @var string $targetSobjectType
130
     */
131
    protected $targetSobjectType = null;
132
133
    /**
134
     * @var string $type
135
     */
136
    protected $type = null;
137
138
    /**
139
     * @var string $visualforcePageName
140
     */
141
    protected $visualforcePageName = null;
142
143
    /**
144
     * @var string $visualforcePageUrl
145
     */
146
    protected $visualforcePageUrl = null;
147
148
    /**
149
     * @var int $width
150
     */
151
    protected $width = null;
152
153
    /**
154
     * @param string $actionEnumOrId
155
     * @param string $label
156
     * @param string $name
157
     * @param boolean $showQuickActionLcHeader
158
     * @param boolean $showQuickActionVfHeader
159
     * @param string $type
160
     */
161
    public function __construct($actionEnumOrId = null, $label = null, $name = null, $showQuickActionLcHeader = null, $showQuickActionVfHeader = null, $type = null)
162
    {
163
      $this->actionEnumOrId = $actionEnumOrId;
164
      $this->label = $label;
165
      $this->name = $name;
166
      $this->showQuickActionLcHeader = $showQuickActionLcHeader;
167
      $this->showQuickActionVfHeader = $showQuickActionVfHeader;
168
      $this->type = $type;
169
    }
170
171
    /**
172
     * @return ShareAccessLevel
173
     */
174
    public function getAccessLevelRequired()
175
    {
176
      return $this->accessLevelRequired;
177
    }
178
179
    /**
180
     * @param ShareAccessLevel $accessLevelRequired
181
     * @return \SForce\Wsdl\DescribeQuickActionResult
182
     */
183
    public function setAccessLevelRequired($accessLevelRequired)
184
    {
185
      $this->accessLevelRequired = $accessLevelRequired;
186
      return $this;
187
    }
188
189
    /**
190
     * @return string
191
     */
192
    public function getActionEnumOrId()
193
    {
194
      return $this->actionEnumOrId;
195
    }
196
197
    /**
198
     * @param string $actionEnumOrId
199
     * @return \SForce\Wsdl\DescribeQuickActionResult
200
     */
201
    public function setActionEnumOrId($actionEnumOrId)
202
    {
203
      $this->actionEnumOrId = $actionEnumOrId;
204
      return $this;
205
    }
206
207
    /**
208
     * @return ID
209
     */
210
    public function getCanvasApplicationId()
211
    {
212
      return $this->canvasApplicationId;
213
    }
214
215
    /**
216
     * @param ID $canvasApplicationId
217
     * @return \SForce\Wsdl\DescribeQuickActionResult
218
     */
219
    public function setCanvasApplicationId($canvasApplicationId)
220
    {
221
      $this->canvasApplicationId = $canvasApplicationId;
222
      return $this;
223
    }
224
225
    /**
226
     * @return string
227
     */
228
    public function getCanvasApplicationName()
229
    {
230
      return $this->canvasApplicationName;
231
    }
232
233
    /**
234
     * @param string $canvasApplicationName
235
     * @return \SForce\Wsdl\DescribeQuickActionResult
236
     */
237
    public function setCanvasApplicationName($canvasApplicationName)
238
    {
239
      $this->canvasApplicationName = $canvasApplicationName;
240
      return $this;
241
    }
242
243
    /**
244
     * @return DescribeColor[]
245
     */
246
    public function getColors()
247
    {
248
      return $this->colors;
249
    }
250
251
    /**
252
     * @param DescribeColor[] $colors
253
     * @return \SForce\Wsdl\DescribeQuickActionResult
254
     */
255
    public function setColors(array $colors = null)
256
    {
257
      $this->colors = $colors;
258
      return $this;
259
    }
260
261
    /**
262
     * @return string
263
     */
264
    public function getContextSobjectType()
265
    {
266
      return $this->contextSobjectType;
267
    }
268
269
    /**
270
     * @param string $contextSobjectType
271
     * @return \SForce\Wsdl\DescribeQuickActionResult
272
     */
273
    public function setContextSobjectType($contextSobjectType)
274
    {
275
      $this->contextSobjectType = $contextSobjectType;
276
      return $this;
277
    }
278
279
    /**
280
     * @return DescribeQuickActionDefaultValue[]
281
     */
282
    public function getDefaultValues()
283
    {
284
      return $this->defaultValues;
285
    }
286
287
    /**
288
     * @param DescribeQuickActionDefaultValue[] $defaultValues
289
     * @return \SForce\Wsdl\DescribeQuickActionResult
290
     */
291
    public function setDefaultValues(array $defaultValues = null)
292
    {
293
      $this->defaultValues = $defaultValues;
294
      return $this;
295
    }
296
297
    /**
298
     * @return string
299
     */
300
    public function getFlowDevName()
301
    {
302
      return $this->flowDevName;
303
    }
304
305
    /**
306
     * @param string $flowDevName
307
     * @return \SForce\Wsdl\DescribeQuickActionResult
308
     */
309
    public function setFlowDevName($flowDevName)
310
    {
311
      $this->flowDevName = $flowDevName;
312
      return $this;
313
    }
314
315
    /**
316
     * @return string
317
     */
318
    public function getFlowRecordIdVar()
319
    {
320
      return $this->flowRecordIdVar;
321
    }
322
323
    /**
324
     * @param string $flowRecordIdVar
325
     * @return \SForce\Wsdl\DescribeQuickActionResult
326
     */
327
    public function setFlowRecordIdVar($flowRecordIdVar)
328
    {
329
      $this->flowRecordIdVar = $flowRecordIdVar;
330
      return $this;
331
    }
332
333
    /**
334
     * @return int
335
     */
336
    public function getHeight()
337
    {
338
      return $this->height;
339
    }
340
341
    /**
342
     * @param int $height
343
     * @return \SForce\Wsdl\DescribeQuickActionResult
344
     */
345
    public function setHeight($height)
346
    {
347
      $this->height = $height;
348
      return $this;
349
    }
350
351
    /**
352
     * @return string
353
     */
354
    public function getIconName()
355
    {
356
      return $this->iconName;
357
    }
358
359
    /**
360
     * @param string $iconName
361
     * @return \SForce\Wsdl\DescribeQuickActionResult
362
     */
363
    public function setIconName($iconName)
364
    {
365
      $this->iconName = $iconName;
366
      return $this;
367
    }
368
369
    /**
370
     * @return string
371
     */
372
    public function getIconUrl()
373
    {
374
      return $this->iconUrl;
375
    }
376
377
    /**
378
     * @param string $iconUrl
379
     * @return \SForce\Wsdl\DescribeQuickActionResult
380
     */
381
    public function setIconUrl($iconUrl)
382
    {
383
      $this->iconUrl = $iconUrl;
384
      return $this;
385
    }
386
387
    /**
388
     * @return DescribeIcon[]
389
     */
390
    public function getIcons()
391
    {
392
      return $this->icons;
393
    }
394
395
    /**
396
     * @param DescribeIcon[] $icons
397
     * @return \SForce\Wsdl\DescribeQuickActionResult
398
     */
399
    public function setIcons(array $icons = null)
400
    {
401
      $this->icons = $icons;
402
      return $this;
403
    }
404
405
    /**
406
     * @return string
407
     */
408
    public function getLabel()
409
    {
410
      return $this->label;
411
    }
412
413
    /**
414
     * @param string $label
415
     * @return \SForce\Wsdl\DescribeQuickActionResult
416
     */
417
    public function setLabel($label)
418
    {
419
      $this->label = $label;
420
      return $this;
421
    }
422
423
    /**
424
     * @return DescribeLayoutSection
425
     */
426
    public function getLayout()
427
    {
428
      return $this->layout;
429
    }
430
431
    /**
432
     * @param DescribeLayoutSection $layout
433
     * @return \SForce\Wsdl\DescribeQuickActionResult
434
     */
435
    public function setLayout($layout)
436
    {
437
      $this->layout = $layout;
438
      return $this;
439
    }
440
441
    /**
442
     * @return ID
443
     */
444
    public function getLightningComponentBundleId()
445
    {
446
      return $this->lightningComponentBundleId;
447
    }
448
449
    /**
450
     * @param ID $lightningComponentBundleId
451
     * @return \SForce\Wsdl\DescribeQuickActionResult
452
     */
453
    public function setLightningComponentBundleId($lightningComponentBundleId)
454
    {
455
      $this->lightningComponentBundleId = $lightningComponentBundleId;
456
      return $this;
457
    }
458
459
    /**
460
     * @return string
461
     */
462
    public function getLightningComponentBundleName()
463
    {
464
      return $this->lightningComponentBundleName;
465
    }
466
467
    /**
468
     * @param string $lightningComponentBundleName
469
     * @return \SForce\Wsdl\DescribeQuickActionResult
470
     */
471
    public function setLightningComponentBundleName($lightningComponentBundleName)
472
    {
473
      $this->lightningComponentBundleName = $lightningComponentBundleName;
474
      return $this;
475
    }
476
477
    /**
478
     * @return string
479
     */
480
    public function getLightningComponentQualifiedName()
481
    {
482
      return $this->lightningComponentQualifiedName;
483
    }
484
485
    /**
486
     * @param string $lightningComponentQualifiedName
487
     * @return \SForce\Wsdl\DescribeQuickActionResult
488
     */
489
    public function setLightningComponentQualifiedName($lightningComponentQualifiedName)
490
    {
491
      $this->lightningComponentQualifiedName = $lightningComponentQualifiedName;
492
      return $this;
493
    }
494
495
    /**
496
     * @return string
497
     */
498
    public function getMiniIconUrl()
499
    {
500
      return $this->miniIconUrl;
501
    }
502
503
    /**
504
     * @param string $miniIconUrl
505
     * @return \SForce\Wsdl\DescribeQuickActionResult
506
     */
507
    public function setMiniIconUrl($miniIconUrl)
508
    {
509
      $this->miniIconUrl = $miniIconUrl;
510
      return $this;
511
    }
512
513
    /**
514
     * @return string
515
     */
516
    public function getName()
517
    {
518
      return $this->name;
519
    }
520
521
    /**
522
     * @param string $name
523
     * @return \SForce\Wsdl\DescribeQuickActionResult
524
     */
525
    public function setName($name)
526
    {
527
      $this->name = $name;
528
      return $this;
529
    }
530
531
    /**
532
     * @return boolean
533
     */
534
    public function getShowQuickActionLcHeader()
535
    {
536
      return $this->showQuickActionLcHeader;
537
    }
538
539
    /**
540
     * @param boolean $showQuickActionLcHeader
541
     * @return \SForce\Wsdl\DescribeQuickActionResult
542
     */
543
    public function setShowQuickActionLcHeader($showQuickActionLcHeader)
544
    {
545
      $this->showQuickActionLcHeader = $showQuickActionLcHeader;
546
      return $this;
547
    }
548
549
    /**
550
     * @return boolean
551
     */
552
    public function getShowQuickActionVfHeader()
553
    {
554
      return $this->showQuickActionVfHeader;
555
    }
556
557
    /**
558
     * @param boolean $showQuickActionVfHeader
559
     * @return \SForce\Wsdl\DescribeQuickActionResult
560
     */
561
    public function setShowQuickActionVfHeader($showQuickActionVfHeader)
562
    {
563
      $this->showQuickActionVfHeader = $showQuickActionVfHeader;
564
      return $this;
565
    }
566
567
    /**
568
     * @return string
569
     */
570
    public function getTargetParentField()
571
    {
572
      return $this->targetParentField;
573
    }
574
575
    /**
576
     * @param string $targetParentField
577
     * @return \SForce\Wsdl\DescribeQuickActionResult
578
     */
579
    public function setTargetParentField($targetParentField)
580
    {
581
      $this->targetParentField = $targetParentField;
582
      return $this;
583
    }
584
585
    /**
586
     * @return ID
587
     */
588
    public function getTargetRecordTypeId()
589
    {
590
      return $this->targetRecordTypeId;
591
    }
592
593
    /**
594
     * @param ID $targetRecordTypeId
595
     * @return \SForce\Wsdl\DescribeQuickActionResult
596
     */
597
    public function setTargetRecordTypeId($targetRecordTypeId)
598
    {
599
      $this->targetRecordTypeId = $targetRecordTypeId;
600
      return $this;
601
    }
602
603
    /**
604
     * @return string
605
     */
606
    public function getTargetSobjectType()
607
    {
608
      return $this->targetSobjectType;
609
    }
610
611
    /**
612
     * @param string $targetSobjectType
613
     * @return \SForce\Wsdl\DescribeQuickActionResult
614
     */
615
    public function setTargetSobjectType($targetSobjectType)
616
    {
617
      $this->targetSobjectType = $targetSobjectType;
618
      return $this;
619
    }
620
621
    /**
622
     * @return string
623
     */
624
    public function getType()
625
    {
626
      return $this->type;
627
    }
628
629
    /**
630
     * @param string $type
631
     * @return \SForce\Wsdl\DescribeQuickActionResult
632
     */
633
    public function setType($type)
634
    {
635
      $this->type = $type;
636
      return $this;
637
    }
638
639
    /**
640
     * @return string
641
     */
642
    public function getVisualforcePageName()
643
    {
644
      return $this->visualforcePageName;
645
    }
646
647
    /**
648
     * @param string $visualforcePageName
649
     * @return \SForce\Wsdl\DescribeQuickActionResult
650
     */
651
    public function setVisualforcePageName($visualforcePageName)
652
    {
653
      $this->visualforcePageName = $visualforcePageName;
654
      return $this;
655
    }
656
657
    /**
658
     * @return string
659
     */
660
    public function getVisualforcePageUrl()
661
    {
662
      return $this->visualforcePageUrl;
663
    }
664
665
    /**
666
     * @param string $visualforcePageUrl
667
     * @return \SForce\Wsdl\DescribeQuickActionResult
668
     */
669
    public function setVisualforcePageUrl($visualforcePageUrl)
670
    {
671
      $this->visualforcePageUrl = $visualforcePageUrl;
672
      return $this;
673
    }
674
675
    /**
676
     * @return int
677
     */
678
    public function getWidth()
679
    {
680
      return $this->width;
681
    }
682
683
    /**
684
     * @param int $width
685
     * @return \SForce\Wsdl\DescribeQuickActionResult
686
     */
687
    public function setWidth($width)
688
    {
689
      $this->width = $width;
690
      return $this;
691
    }
692
693
}
694