Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class FindRDVPointRetraitAcheminementResponse extends AbstractStructBase |
||
15 | { |
||
16 | /** |
||
17 | * The return |
||
18 | * Meta information extracted from the WSDL |
||
19 | * - minOccurs: 0 |
||
20 | * @var \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult |
||
21 | */ |
||
22 | public $return; |
||
23 | /** |
||
24 | * Constructor method for findRDVPointRetraitAcheminementResponse |
||
25 | * @uses FindRDVPointRetraitAcheminementResponse::setReturn() |
||
26 | * @param \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return |
||
27 | */ |
||
28 | public function __construct(\ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return = null) |
||
29 | { |
||
30 | $this |
||
31 | ->setReturn($return); |
||
32 | } |
||
33 | /** |
||
34 | * Get return value |
||
35 | * @return \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult|null |
||
36 | */ |
||
37 | public function getReturn() |
||
38 | { |
||
39 | return $this->return; |
||
40 | } |
||
41 | /** |
||
42 | * Set return value |
||
43 | * @param \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return |
||
44 | * @return \ColissimoPickupPoint\StructType\FindRDVPointRetraitAcheminementResponse |
||
45 | */ |
||
46 | public function setReturn(\ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return = null) |
||
50 | } |
||
51 | } |
||
52 |