@@ -9,6 +9,127 @@ class Shipping
99 public $ shippingCarrier ;
1010 public $ shippingPhoneNo ;
1111
12+ public $ shippingNumber ;
13+ public $ shipToEmail ;
14+ public $ notes ;
15+ public $ shippingFeeId ;
16+ public $ shippingFee ;
17+ public $ shippingDescription ;
18+ public $ deliveryEstimate ;
19+
20+ /**
21+ * @return mixed
22+ */
23+ public function getShippingNumber ()
24+ {
25+ return $ this ->shippingNumber ;
26+ }
27+
28+ /**
29+ * @param mixed $shippingNumber
30+ */
31+ public function setShippingNumber ($ shippingNumber )
32+ {
33+ $ this ->shippingNumber = $ shippingNumber ;
34+ }
35+
36+ /**
37+ * @return mixed
38+ */
39+ public function getShipToEmail ()
40+ {
41+ return $ this ->shipToEmail ;
42+ }
43+
44+ /**
45+ * @param mixed $shipToEmail
46+ */
47+ public function setShipToEmail ($ shipToEmail )
48+ {
49+ $ this ->shipToEmail = $ shipToEmail ;
50+ }
51+
52+ /**
53+ * @return mixed
54+ */
55+ public function getNotes ()
56+ {
57+ return $ this ->notes ;
58+ }
59+
60+ /**
61+ * @param mixed $notes
62+ */
63+ public function setNotes ($ notes )
64+ {
65+ $ this ->notes = $ notes ;
66+ }
67+
68+ /**
69+ * @return mixed
70+ */
71+ public function getShippingFeeId ()
72+ {
73+ return $ this ->shippingFeeId ;
74+ }
75+
76+ /**
77+ * @param mixed $shippingFeeId
78+ */
79+ public function setShippingFeeId ($ shippingFeeId )
80+ {
81+ $ this ->shippingFeeId = $ shippingFeeId ;
82+ }
83+
84+ /**
85+ * @return mixed
86+ */
87+ public function getShippingFee ()
88+ {
89+ return $ this ->shippingFee ;
90+ }
91+
92+ /**
93+ * @param mixed $shippingFee
94+ */
95+ public function setShippingFee ($ shippingFee )
96+ {
97+ $ this ->shippingFee = $ shippingFee ;
98+ }
99+
100+ /**
101+ * @return mixed
102+ */
103+ public function getShippingDescription ()
104+ {
105+ return $ this ->shippingDescription ;
106+ }
107+
108+ /**
109+ * @param mixed $shippingDescription
110+ */
111+ public function setShippingDescription ($ shippingDescription )
112+ {
113+ $ this ->shippingDescription = $ shippingDescription ;
114+ }
115+
116+ /**
117+ * @return mixed
118+ */
119+ public function getDeliveryEstimate ()
120+ {
121+ return $ this ->deliveryEstimate ;
122+ }
123+
124+ /**
125+ * @param mixed $deliveryEstimate
126+ */
127+ public function setDeliveryEstimate ($ deliveryEstimate )
128+ {
129+ $ this ->deliveryEstimate = $ deliveryEstimate ;
130+ }
131+
132+
12133 /**
13134 * @return String
14135 */
0 commit comments