Total Complexity | 7 |
Total Lines | 81 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class DescribeSearchableEntityResult |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $label = null; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $name = null; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $pluralLabel = null; |
||
21 | |||
22 | /** |
||
23 | * @param string $label |
||
24 | * @param string $name |
||
25 | * @param string $pluralLabel |
||
26 | */ |
||
27 | public function __construct($label = null, $name = null, $pluralLabel = null) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getLabel() |
||
38 | { |
||
39 | return $this->label; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @param string $label |
||
44 | * @return \SForce\Wsdl\DescribeSearchableEntityResult |
||
45 | */ |
||
46 | public function setLabel($label) |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getName() |
||
56 | { |
||
57 | return $this->name; |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * @param string $name |
||
62 | * @return \SForce\Wsdl\DescribeSearchableEntityResult |
||
63 | */ |
||
64 | public function setName($name) |
||
65 | { |
||
66 | $this->name = $name; |
||
67 | return $this; |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * @return string |
||
72 | */ |
||
73 | public function getPluralLabel() |
||
76 | } |
||
77 | |||
78 | /** |
||
79 | * @param string $pluralLabel |
||
80 | * @return \SForce\Wsdl\DescribeSearchableEntityResult |
||
81 | */ |
||
82 | public function setPluralLabel($pluralLabel) |
||
86 | } |
||
87 | } |
||
88 |