|
| 1 | +<?php |
| 2 | +namespace FedEx\LocationsService\ComplexType; |
| 3 | + |
| 4 | +use FedEx\AbstractComplexType; |
| 5 | + |
| 6 | +/** |
| 7 | + * LocationFieldsForInternalFedexUseDetail |
| 8 | + * |
| 9 | + * @author Jeremy Dunn <[email protected]> |
| 10 | + * @package PHP FedEx API wrapper |
| 11 | + * @subpackage Locations Service |
| 12 | + * |
| 13 | + * @property string $NonRevenueAccountNumber |
| 14 | + * @property string $CityCenterAccountNumber |
| 15 | + * @property string $CustomsLocationId |
| 16 | + * @property string $CostCenterCode |
| 17 | + * @property \FedEx\LocationsService\SimpleType\LocationAttributesForInternalFedexUseType|string[] $Attributes |
| 18 | + * @property Contact $OperationalContact |
| 19 | + * @property string $LocalAirportId |
| 20 | + * @property string $RegionalAirportId |
| 21 | +
|
| 22 | + */ |
| 23 | +class LocationFieldsForInternalFedexUseDetail extends AbstractComplexType |
| 24 | +{ |
| 25 | + /** |
| 26 | + * Name of this complex type |
| 27 | + * |
| 28 | + * @var string |
| 29 | + */ |
| 30 | + protected $name = 'LocationFieldsForInternalFedexUseDetail'; |
| 31 | + |
| 32 | + /** |
| 33 | + * Set NonRevenueAccountNumber |
| 34 | + * |
| 35 | + * @param string $nonRevenueAccountNumber |
| 36 | + * @return $this |
| 37 | + */ |
| 38 | + public function setNonRevenueAccountNumber($nonRevenueAccountNumber) |
| 39 | + { |
| 40 | + $this->values['NonRevenueAccountNumber'] = $nonRevenueAccountNumber; |
| 41 | + return $this; |
| 42 | + } |
| 43 | + |
| 44 | + /** |
| 45 | + * The city center account number of the location. |
| 46 | + * |
| 47 | + * @param string $cityCenterAccountNumber |
| 48 | + * @return $this |
| 49 | + */ |
| 50 | + public function setCityCenterAccountNumber($cityCenterAccountNumber) |
| 51 | + { |
| 52 | + $this->values['CityCenterAccountNumber'] = $cityCenterAccountNumber; |
| 53 | + return $this; |
| 54 | + } |
| 55 | + |
| 56 | + /** |
| 57 | + * Set CustomsLocationId |
| 58 | + * |
| 59 | + * @param string $customsLocationId |
| 60 | + * @return $this |
| 61 | + */ |
| 62 | + public function setCustomsLocationId($customsLocationId) |
| 63 | + { |
| 64 | + $this->values['CustomsLocationId'] = $customsLocationId; |
| 65 | + return $this; |
| 66 | + } |
| 67 | + |
| 68 | + /** |
| 69 | + * Set CostCenterCode |
| 70 | + * |
| 71 | + * @param string $costCenterCode |
| 72 | + * @return $this |
| 73 | + */ |
| 74 | + public function setCostCenterCode($costCenterCode) |
| 75 | + { |
| 76 | + $this->values['CostCenterCode'] = $costCenterCode; |
| 77 | + return $this; |
| 78 | + } |
| 79 | + |
| 80 | + /** |
| 81 | + * Set Attributes |
| 82 | + * |
| 83 | + * @param \FedEx\LocationsService\SimpleType\LocationAttributesForInternalFedexUseType[]|string[] $attributes |
| 84 | + * @return $this |
| 85 | + */ |
| 86 | + public function setAttributes(array $attributes) |
| 87 | + { |
| 88 | + $this->values['Attributes'] = $attributes; |
| 89 | + return $this; |
| 90 | + } |
| 91 | + |
| 92 | + /** |
| 93 | + * Specifies the details of a FedEx facility that the operational personnel can contact for clearance purposes. |
| 94 | + * |
| 95 | + * @param Contact $operationalContact |
| 96 | + * @return $this |
| 97 | + */ |
| 98 | + public function setOperationalContact(Contact $operationalContact) |
| 99 | + { |
| 100 | + $this->values['OperationalContact'] = $operationalContact; |
| 101 | + return $this; |
| 102 | + } |
| 103 | + |
| 104 | + /** |
| 105 | + * This contains the local airport identifier-formerly known as the airport code. |
| 106 | + * |
| 107 | + * @param string $localAirportId |
| 108 | + * @return $this |
| 109 | + */ |
| 110 | + public function setLocalAirportId($localAirportId) |
| 111 | + { |
| 112 | + $this->values['LocalAirportId'] = $localAirportId; |
| 113 | + return $this; |
| 114 | + } |
| 115 | + |
| 116 | + /** |
| 117 | + * This contains the regional airport identifier-formerly known as the market location code. |
| 118 | + * |
| 119 | + * @param string $regionalAirportId |
| 120 | + * @return $this |
| 121 | + */ |
| 122 | + public function setRegionalAirportId($regionalAirportId) |
| 123 | + { |
| 124 | + $this->values['RegionalAirportId'] = $regionalAirportId; |
| 125 | + return $this; |
| 126 | + } |
| 127 | +} |
0 commit comments