|
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
|
@@ -791,6 +794,27 @@ public function setBillingAddress2($value)
|
791 | 794 | return $this->setParameter('billingAddress2', $value);
|
792 | 795 | }
|
793 | 796 |
|
| 797 | + /** |
| 798 | + * Get the billing address, line 3. |
| 799 | + * |
| 800 | + * @return string |
| 801 | + */ |
| 802 | + public function getBillingAddress3() |
| 803 | + { |
| 804 | + return $this->getParameter('billingAddress3'); |
| 805 | + } |
| 806 | + |
| 807 | + /** |
| 808 | + * Sets the billing address, line 3. |
| 809 | + * |
| 810 | + * @param string $value |
| 811 | + * @return $this |
| 812 | + */ |
| 813 | + public function setBillingAddress3($value) |
| 814 | + { |
| 815 | + return $this->setParameter('billingAddress3', $value); |
| 816 | + } |
| 817 | + |
794 | 818 | /**
|
795 | 819 | * Get the billing city.
|
796 | 820 | *
|
@@ -1090,6 +1114,27 @@ public function setShippingAddress2($value)
|
1090 | 1114 | return $this->setParameter('shippingAddress2', $value);
|
1091 | 1115 | }
|
1092 | 1116 |
|
| 1117 | + /** |
| 1118 | + * Get the shipping address, line 3. |
| 1119 | + * |
| 1120 | + * @return string |
| 1121 | + */ |
| 1122 | + public function getShippingAddress3() |
| 1123 | + { |
| 1124 | + return $this->getParameter('shippingAddress3'); |
| 1125 | + } |
| 1126 | + |
| 1127 | + /** |
| 1128 | + * Sets the shipping address, line 3. |
| 1129 | + * |
| 1130 | + * @param string $value |
| 1131 | + * @return $this |
| 1132 | + */ |
| 1133 | + public function setShippingAddress3($value) |
| 1134 | + { |
| 1135 | + return $this->setParameter('shippingAddress3', $value); |
| 1136 | + } |
| 1137 | + |
1093 | 1138 | /**
|
1094 | 1139 | * Get the shipping city.
|
1095 | 1140 | *
|
@@ -1285,6 +1330,30 @@ public function setAddress2($value)
|
1285 | 1330 | return $this;
|
1286 | 1331 | }
|
1287 | 1332 |
|
| 1333 | + /** |
| 1334 | + * Get the billing address, line 3. |
| 1335 | + * |
| 1336 | + * @return string |
| 1337 | + */ |
| 1338 | + public function getAddress3() |
| 1339 | + { |
| 1340 | + return $this->getParameter('billingAddress3'); |
| 1341 | + } |
| 1342 | + |
| 1343 | + /** |
| 1344 | + * Sets the billing and shipping address, line 3. |
| 1345 | + * |
| 1346 | + * @param string $value |
| 1347 | + * @return $this |
| 1348 | + */ |
| 1349 | + public function setAddress3($value) |
| 1350 | + { |
| 1351 | + $this->setParameter('billingAddress3', $value); |
| 1352 | + $this->setParameter('shippingAddress3', $value); |
| 1353 | + |
| 1354 | + return $this; |
| 1355 | + } |
| 1356 | + |
1288 | 1357 | /**
|
1289 | 1358 | * Get the billing city.
|
1290 | 1359 | *
|
|
0 commit comments