|
44 | 44 | * * company |
45 | 45 | * * address1 |
46 | 46 | * * address2 |
| 47 | + * * address3 |
47 | 48 | * * city |
48 | 49 | * * postcode |
49 | 50 | * * state |
|
66 | 67 | * * billingCompany |
67 | 68 | * * billingAddress1 |
68 | 69 | * * billingAddress2 |
| 70 | + * * billingAddress3 |
69 | 71 | * * billingCity |
70 | 72 | * * billingPostcode |
71 | 73 | * * billingState |
|
79 | 81 | * * shippingCompany |
80 | 82 | * * shippingAddress1 |
81 | 83 | * * shippingAddress2 |
| 84 | + * * shippingAddress3 |
82 | 85 | * * shippingCity |
83 | 86 | * * shippingPostcode |
84 | 87 | * * shippingState |
@@ -793,6 +796,27 @@ public function setBillingAddress2($value) |
793 | 796 | return $this->setParameter('billingAddress2', $value); |
794 | 797 | } |
795 | 798 |
|
| 799 | + /** |
| 800 | + * Get the billing address, line 3. |
| 801 | + * |
| 802 | + * @return string |
| 803 | + */ |
| 804 | + public function getBillingAddress3() |
| 805 | + { |
| 806 | + return $this->getParameter('billingAddress3'); |
| 807 | + } |
| 808 | + |
| 809 | + /** |
| 810 | + * Sets the billing address, line 3. |
| 811 | + * |
| 812 | + * @param string $value |
| 813 | + * @return $this |
| 814 | + */ |
| 815 | + public function setBillingAddress3($value) |
| 816 | + { |
| 817 | + return $this->setParameter('billingAddress3', $value); |
| 818 | + } |
| 819 | + |
796 | 820 | /** |
797 | 821 | * Get the billing city. |
798 | 822 | * |
@@ -1092,6 +1116,27 @@ public function setShippingAddress2($value) |
1092 | 1116 | return $this->setParameter('shippingAddress2', $value); |
1093 | 1117 | } |
1094 | 1118 |
|
| 1119 | + /** |
| 1120 | + * Get the shipping address, line 3. |
| 1121 | + * |
| 1122 | + * @return string |
| 1123 | + */ |
| 1124 | + public function getShippingAddress3() |
| 1125 | + { |
| 1126 | + return $this->getParameter('shippingAddress3'); |
| 1127 | + } |
| 1128 | + |
| 1129 | + /** |
| 1130 | + * Sets the shipping address, line 3. |
| 1131 | + * |
| 1132 | + * @param string $value |
| 1133 | + * @return $this |
| 1134 | + */ |
| 1135 | + public function setShippingAddress3($value) |
| 1136 | + { |
| 1137 | + return $this->setParameter('shippingAddress3', $value); |
| 1138 | + } |
| 1139 | + |
1095 | 1140 | /** |
1096 | 1141 | * Get the shipping city. |
1097 | 1142 | * |
@@ -1287,6 +1332,30 @@ public function setAddress2($value) |
1287 | 1332 | return $this; |
1288 | 1333 | } |
1289 | 1334 |
|
| 1335 | + /** |
| 1336 | + * Get the billing address, line 3. |
| 1337 | + * |
| 1338 | + * @return string |
| 1339 | + */ |
| 1340 | + public function getAddress3() |
| 1341 | + { |
| 1342 | + return $this->getParameter('billingAddress3'); |
| 1343 | + } |
| 1344 | + |
| 1345 | + /** |
| 1346 | + * Sets the billing and shipping address, line 3. |
| 1347 | + * |
| 1348 | + * @param string $value |
| 1349 | + * @return $this |
| 1350 | + */ |
| 1351 | + public function setAddress3($value) |
| 1352 | + { |
| 1353 | + $this->setParameter('billingAddress3', $value); |
| 1354 | + $this->setParameter('shippingAddress3', $value); |
| 1355 | + |
| 1356 | + return $this; |
| 1357 | + } |
| 1358 | + |
1290 | 1359 | /** |
1291 | 1360 | * Get the billing city. |
1292 | 1361 | * |
|
0 commit comments