Skip to content

Commit 4a162e9

Browse files
authored
Merge pull request #360 from EasyPost/tracker_properties
feat: add missing properties to Tracker and TrackingDetail models
2 parents 2b622b4 + 56eabfb commit 4a162e9

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- `betaReferralCustomer.createBankAccountClientSecret`
1010
- `referralCustomer.addCreditCardFromStripe`
1111
- `referralCustomer.addBankAccountFromStripe`
12+
- Adds missing properties to `Tracker` and `TrackingDetail` models
1213
- Routes `AmazonShippingAccount` to the correct endpoint
1314
- Corrects wrapping payload for update webhook endpoint
1415
- Corrects various type hints throughout project

lib/EasyPost/Tracker.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* @property CarrierDetail $carrier_detail
2020
* @property string $public_url
2121
* @property Fee[] $fees
22+
* @property bool $is_return
23+
* @property bool $finalized
2224
* @property string $created_at
2325
* @property string $updated_at
2426
*/

lib/EasyPost/TrackingDetail.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@
66
* @package EasyPost
77
* @property string $object
88
* @property string $message
9+
* @property string $description
910
* @property string $status
1011
* @property string $status_detail
1112
* @property string $datetime
1213
* @property string $source
14+
* @property string $carrier_code
1315
* @property TrackingLocation $tracking_location
16+
* @property string $est_delivery_date
1417
*/
1518
class TrackingDetail extends EasyPostObject
1619
{

0 commit comments

Comments
 (0)