-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ca871c
commit 84e056f
Showing
16 changed files
with
226 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
use FedEx\AbstractComplexType; | ||
|
||
/** | ||
* ContentRecord | ||
* Details the contents of the package. | ||
* | ||
* @author Jeremy Dunn <[email protected]> | ||
* @package PHP FedEx API wrapper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
src/FedEx/TrackService/ComplexType/TrackPackagingDescriptionDetail.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
namespace FedEx\TrackService\ComplexType; | ||
|
||
use FedEx\AbstractComplexType; | ||
|
||
/** | ||
* TrackPackagingDescriptionDetail | ||
* | ||
* @author Jeremy Dunn <jeremy@jsdunn.info> | ||
* @package PHP FedEx API wrapper | ||
* @subpackage Package Movement Information Service | ||
* | ||
* @property string $Type | ||
* @property string $Description | ||
*/ | ||
class TrackPackagingDescriptionDetail extends AbstractComplexType | ||
{ | ||
/** | ||
* Name of this complex type | ||
* | ||
* @var string | ||
*/ | ||
protected $name = 'TrackPackagingDescriptionDetail'; | ||
|
||
/** | ||
* Strict representation of the Packaging Type (e.g. FEDEX_SMALL_BOX, YOUR_PACKAGING) | ||
* | ||
* @param string $type | ||
* @return $this | ||
*/ | ||
public function setType($type) | ||
{ | ||
$this->values['Type'] = $type; | ||
return $this; | ||
} | ||
|
||
/** | ||
* A description of the packaging. | ||
* | ||
* @param string $description | ||
* @return $this | ||
*/ | ||
public function setDescription($description) | ||
{ | ||
$this->values['Description'] = $description; | ||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
namespace FedEx\TrackService\SimpleType; | ||
|
||
use FedEx\AbstractSimpleType; | ||
|
||
/** | ||
* BarcodeEntryType | ||
* | ||
* @author Jeremy Dunn <[email protected]> | ||
* @package PHP FedEx API wrapper | ||
* @subpackage Package Movement Information Service | ||
*/ | ||
class BarcodeEntryType extends AbstractSimpleType | ||
{ | ||
const _MANUAL_ENTRY = 'MANUAL_ENTRY'; | ||
const _SCAN = 'SCAN'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/FedEx/TrackService/SimpleType/ClearanceBrokerageType.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
namespace FedEx\TrackService\SimpleType; | ||
|
||
use FedEx\AbstractSimpleType; | ||
|
||
/** | ||
* Specifies the type of brokerage to be applied to a shipment. | ||
* | ||
* @author Jeremy Dunn <[email protected]> | ||
* @package PHP FedEx API wrapper | ||
* @subpackage Package Movement Information Service | ||
*/ | ||
class ClearanceBrokerageType extends AbstractSimpleType | ||
{ | ||
const _BROKER_INCLUSIVE = 'BROKER_INCLUSIVE'; | ||
const _BROKER_INCLUSIVE_NON_RESIDENT_IMPORTER = 'BROKER_INCLUSIVE_NON_RESIDENT_IMPORTER'; | ||
const _BROKER_SELECT = 'BROKER_SELECT'; | ||
const _BROKER_SELECT_NON_RESIDENT_IMPORTER = 'BROKER_SELECT_NON_RESIDENT_IMPORTER'; | ||
const _BROKER_UNASSIGNED = 'BROKER_UNASSIGNED'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.