|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace SForce\Wsdl; |
|
4
|
|
|
|
|
5
|
|
|
class describePathAssistants |
|
6
|
|
|
{ |
|
7
|
|
|
/** |
|
8
|
|
|
* @var string |
|
9
|
|
|
*/ |
|
10
|
|
|
protected $sObjectType = null; |
|
11
|
|
|
|
|
12
|
|
|
/** |
|
13
|
|
|
* @var string |
|
14
|
|
|
*/ |
|
15
|
|
|
protected $picklistValue = null; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* @var ID |
|
19
|
|
|
*/ |
|
20
|
|
|
protected $recordTypeIds = null; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* @param string $sObjectType |
|
24
|
|
|
* @param string $picklistValue |
|
25
|
|
|
* @param ID $recordTypeIds |
|
26
|
|
|
*/ |
|
27
|
|
|
public function __construct($sObjectType = null, $picklistValue = null, $recordTypeIds = null) |
|
28
|
|
|
{ |
|
29
|
|
|
$this->sObjectType = $sObjectType; |
|
30
|
|
|
$this->picklistValue = $picklistValue; |
|
31
|
|
|
$this->recordTypeIds = $recordTypeIds; |
|
32
|
|
|
} |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* @return string |
|
36
|
|
|
*/ |
|
37
|
|
|
public function getSObjectType() |
|
38
|
|
|
{ |
|
39
|
|
|
return $this->sObjectType; |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @param string $sObjectType |
|
44
|
|
|
* @return \SForce\Wsdl\describePathAssistants |
|
45
|
|
|
*/ |
|
46
|
|
|
public function setSObjectType($sObjectType) |
|
47
|
|
|
{ |
|
48
|
|
|
$this->sObjectType = $sObjectType; |
|
49
|
|
|
return $this; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* @return string |
|
54
|
|
|
*/ |
|
55
|
|
|
public function getPicklistValue() |
|
56
|
|
|
{ |
|
57
|
|
|
return $this->picklistValue; |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
/** |
|
61
|
|
|
* @param string $picklistValue |
|
62
|
|
|
* @return \SForce\Wsdl\describePathAssistants |
|
63
|
|
|
*/ |
|
64
|
|
|
public function setPicklistValue($picklistValue) |
|
65
|
|
|
{ |
|
66
|
|
|
$this->picklistValue = $picklistValue; |
|
67
|
|
|
return $this; |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* @return ID |
|
72
|
|
|
*/ |
|
73
|
|
|
public function getRecordTypeIds() |
|
74
|
|
|
{ |
|
75
|
|
|
return $this->recordTypeIds; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* @param ID $recordTypeIds |
|
80
|
|
|
* @return \SForce\Wsdl\describePathAssistants |
|
81
|
|
|
*/ |
|
82
|
|
|
public function setRecordTypeIds($recordTypeIds) |
|
83
|
|
|
{ |
|
84
|
|
|
$this->recordTypeIds = $recordTypeIds; |
|
85
|
|
|
return $this; |
|
86
|
|
|
} |
|
87
|
|
|
} |
|
88
|
|
|
|