1 | <?php |
||
5 | trait ServiceSummaryTrait |
||
6 | { |
||
7 | /** @deprecated */ |
||
8 | public $Service; |
||
9 | |||
10 | /** @deprecated */ |
||
11 | public $Guaranteed; |
||
12 | |||
13 | /** @deprecated */ |
||
14 | public $SaturdayDelivery; |
||
15 | |||
16 | /** @deprecated */ |
||
17 | public $SaturdayDeliveryDisclaimer; |
||
18 | |||
19 | |||
20 | /** @var \Ups\Entity\Service */ |
||
21 | protected $service; |
||
22 | |||
23 | /** @var \Ups\Entity\Guaranteed */ |
||
24 | protected $guaranteed; |
||
25 | |||
26 | /** @var mixed */ |
||
27 | protected $saturdayDelivery; |
||
28 | |||
29 | /** @var mixed */ |
||
30 | protected $saturdayDeliveryDisclaimer; |
||
31 | |||
32 | /** |
||
33 | * @param \stdClass|null $response |
||
34 | */ |
||
35 | 4 | public function build(\stdClass $response = null) |
|
49 | |||
50 | /** |
||
51 | * @return \Ups\Entity\Service |
||
52 | */ |
||
53 | public function getService() |
||
57 | |||
58 | /** |
||
59 | * @param \Ups\Entity\Service $service |
||
60 | */ |
||
61 | 4 | public function setService(Service $service) |
|
66 | |||
67 | /** |
||
68 | * @return \Ups\Entity\Guaranteed |
||
69 | */ |
||
70 | public function getGuaranteed() |
||
74 | |||
75 | /** |
||
76 | * @param \Ups\Entity\Guaranteed $guaranteed |
||
77 | */ |
||
78 | 4 | public function setGuaranteed(Guaranteed $guaranteed) |
|
83 | |||
84 | /** |
||
85 | * @return mixed |
||
86 | */ |
||
87 | public function getSaturdayDelivery() |
||
88 | { |
||
89 | return $this->saturdayDelivery; |
||
90 | } |
||
91 | |||
92 | /** |
||
93 | * @param mixed $saturdayDelivery |
||
94 | */ |
||
95 | public function setSaturdayDelivery($saturdayDelivery) |
||
100 | |||
101 | /** |
||
102 | * @return mixed |
||
103 | */ |
||
104 | public function getSaturdayDeliveryDisclaimer() |
||
105 | { |
||
106 | return $this->saturdayDeliveryDisclaimer; |
||
107 | } |
||
108 | |||
109 | /** |
||
110 | * @param mixed $saturdayDeliveryDisclaimer |
||
111 | */ |
||
112 | public function setSaturdayDeliveryDisclaimer($saturdayDeliveryDisclaimer) |
||
117 | } |
||
118 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.