├── .editorconfig ├── .github └── workflows │ └── close-inactive-issues.yaml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── composer.json ├── examples ├── CommercialInvoice.xls ├── address-validation.php ├── async-retrieve-job-results.php ├── bootstrap.php ├── close-service.php ├── country-service.php ├── create-open-shipment.php ├── create-pickup.php ├── dangerous-goods-data-service.php ├── dangerous-goods-list-detail.php ├── delete-shipment.php ├── example.credentials.php ├── in-flight-shipment-service.php ├── location-service.php ├── rate-request.php ├── ship.php ├── track-by-id.php ├── upload-documents.php └── validation-availability-and-commitment-service.php ├── phpcs.xml ├── phpunit.xml ├── src └── FedEx │ ├── AbstractComplexType.php │ ├── AbstractRequest.php │ ├── AbstractSimpleType.php │ ├── AddressValidationService │ ├── ComplexType │ │ ├── Address.php │ │ ├── AddressAttribute.php │ │ ├── AddressToValidate.php │ │ ├── AddressValidationReply.php │ │ ├── AddressValidationRequest.php │ │ ├── AddressValidationResult.php │ │ ├── ClientDetail.php │ │ ├── Contact.php │ │ ├── Localization.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── ParsedAddressPartsDetail.php │ │ ├── ParsedPostalCodeDetail.php │ │ ├── ParsedStreetLineDetail.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── AutoConfigurationType.php │ │ ├── FedExAddressClassificationType.php │ │ ├── NotificationSeverityType.php │ │ └── OperationalAddressStateType.php │ ├── AsyncService │ ├── ComplexType │ │ ├── ArtifactPart.php │ │ ├── ArtifactRetrievalFilter.php │ │ ├── ClientDetail.php │ │ ├── Localization.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── RetrieveJobResultsReply.php │ │ ├── RetrieveJobResultsRequest.php │ │ ├── RetrievedArtifact.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── ArtifactFormatType.php │ │ ├── ArtifactType.php │ │ ├── ExpressRegionCode.php │ │ └── NotificationSeverityType.php │ ├── CloseService │ ├── ComplexType │ │ ├── ClientDetail.php │ │ ├── CloseDocument.php │ │ ├── CloseDocumentFormat.php │ │ ├── CloseDocumentSpecification.php │ │ ├── CloseManifestReferenceDetail.php │ │ ├── CloseSmartPostDetail.php │ │ ├── CloseWithDocumentsProcessingOptionsRequested.php │ │ ├── CloseWithDocumentsReply.php │ │ ├── CloseWithDocumentsRequest.php │ │ ├── CustomerImageUsage.php │ │ ├── DetailedDeliveryManifestDetail.php │ │ ├── GroundCloseDocumentsReply.php │ │ ├── GroundCloseReply.php │ │ ├── GroundCloseReportsReprintReply.php │ │ ├── GroundCloseReportsReprintRequest.php │ │ ├── GroundCloseRequest.php │ │ ├── GroundCloseWithDocumentsRequest.php │ │ ├── HazardousMaterialsCertificationDetail.php │ │ ├── LinearMeasure.php │ │ ├── Localization.php │ │ ├── ManifestDetail.php │ │ ├── ManifestFile.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── Op950Detail.php │ │ ├── ReprintGroundCloseDocumentsRequest.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentPart.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentStorageDetail.php │ │ ├── SmartPostCloseReply.php │ │ ├── SmartPostCloseRequest.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── CarrierCodeType.php │ │ ├── CloseActionType.php │ │ ├── CloseDocumentType.php │ │ ├── CloseGroupingType.php │ │ ├── CloseReportType.php │ │ ├── CloseWithDocumentsProcessingOptionType.php │ │ ├── CustomerImageUsageType.php │ │ ├── CustomerReferenceType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── ImageId.php │ │ ├── InternalImageType.php │ │ ├── LinearUnits.php │ │ ├── NotificationSeverityType.php │ │ ├── ReprintGroundCloseDocumentsOptionType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentNamingType.php │ │ └── ShippingDocumentStockType.php │ ├── CountryService │ ├── ComplexType │ │ ├── Address.php │ │ ├── ClientDetail.php │ │ ├── Localization.php │ │ ├── LocationDescription.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── PostalDetail.php │ │ ├── TransactionDetail.php │ │ ├── ValidatePostalReply.php │ │ ├── ValidatePostalRequest.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── CarrierCodeType.php │ │ ├── ExpressRegionCode.php │ │ ├── NotificationSeverityType.php │ │ ├── PackageSpecialServiceType.php │ │ └── ShipmentSpecialServiceType.php │ ├── CourierDispatchService │ ├── ComplexType │ │ ├── Address.php │ │ ├── CancelCourierDispatchReply.php │ │ ├── CancelCourierDispatchRequest.php │ │ ├── ClientDetail.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── CourierDispatchFreightDetail.php │ │ ├── CourierDispatchOriginDetail.php │ │ ├── CourierDispatchReply.php │ │ ├── CourierDispatchRequest.php │ │ ├── Dimensions.php │ │ ├── Localization.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── PickupAvailabilityReply.php │ │ ├── PickupAvailabilityRequest.php │ │ ├── PickupScheduleOption.php │ │ ├── PickupShipmentAttributes.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── BuildingPartCode.php │ │ ├── CarrierCodeType.php │ │ ├── CourierDispatchBuildingLocationType.php │ │ ├── LinearUnits.php │ │ ├── NotificationSeverityType.php │ │ ├── PickupRequestType.php │ │ ├── ServiceType.php │ │ ├── TrailerSizeType.php │ │ ├── TruckType.php │ │ └── WeightUnits.php │ ├── DGDSService │ ├── ComplexType │ │ ├── AddDangerousGoodsHandlingUnitReply.php │ │ ├── AddDangerousGoodsHandlingUnitRequest.php │ │ ├── Address.php │ │ ├── AssociatedEnterpriseDocumentDetail.php │ │ ├── ClientDetail.php │ │ ├── CompletedDangerousGoodsHandlingUnitGroup.php │ │ ├── CompletedDangerousGoodsShipmentDetail.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── DangerousGoodsHandlingUnitShippingDetail.php │ │ ├── DangerousGoodsInnerReceptacleDetail.php │ │ ├── DangerousGoodsRadionuclideActivity.php │ │ ├── DangerousGoodsRadionuclideDetail.php │ │ ├── DangerousGoodsSignatory.php │ │ ├── DeleteDangerousGoodsHandlingUnitReply.php │ │ ├── DeleteDangerousGoodsHandlingUnitRequest.php │ │ ├── DeleteDangerousGoodsReply.php │ │ ├── DeleteDangerousGoodsRequest.php │ │ ├── Localization.php │ │ ├── ManifestReferenceDetail.php │ │ ├── ModifyDangerousGoodsHandlingUnitReply.php │ │ ├── ModifyDangerousGoodsHandlingUnitRequest.php │ │ ├── ModifyDangerousGoodsShipmentReply.php │ │ ├── ModifyDangerousGoodsShipmentRequest.php │ │ ├── NetExplosiveDetail.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── Party.php │ │ ├── PreciseQuantity.php │ │ ├── RadioactiveDangerousGoodsHandlingUnitDetail.php │ │ ├── RecordedDangerousGoodsHandlingUnitGroup.php │ │ ├── RecordedDangerousGoodsShipmentDetail.php │ │ ├── RetrieveDangerousGoodsReply.php │ │ ├── RetrieveDangerousGoodsRequest.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TrackingNumberUnit.php │ │ ├── TransactionDetail.php │ │ ├── UploadDangerousGoodsProcessingOptionsRequested.php │ │ ├── UploadDangerousGoodsReply.php │ │ ├── UploadDangerousGoodsRequest.php │ │ ├── UploadedDangerousGoodsCommodityContent.php │ │ ├── UploadedDangerousGoodsCommodityDescription.php │ │ ├── UploadedDangerousGoodsContainer.php │ │ ├── UploadedDangerousGoodsContainerGroup.php │ │ ├── UploadedDangerousGoodsHandlingUnit.php │ │ ├── UploadedDangerousGoodsHandlingUnitGroup.php │ │ ├── UploadedDangerousGoodsShipmentDetail.php │ │ ├── ValidateDangerousGoodsProcessingOptionsRequested.php │ │ ├── ValidateDangerousGoodsReply.php │ │ ├── ValidateDangerousGoodsRequest.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── CarrierCodeType.php │ │ ├── CustomerReferenceType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DangerousGoodsAircraftCategoryType.php │ │ ├── DangerousGoodsContainerAttributeType.php │ │ ├── DangerousGoodsDescriptorType.php │ │ ├── DangerousGoodsHandlingUnitAttributeType.php │ │ ├── DangerousGoodsPackingGroupType.php │ │ ├── DangerousGoodsRegulationAttributeType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExAddressClassificationType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── NetExplosiveClassificationType.php │ │ ├── NotificationSeverityType.php │ │ ├── PhysicalFormType.php │ │ ├── RadioactiveLabelType.php │ │ ├── RadioactivityUnitOfMeasure.php │ │ ├── ServiceType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── UploadDangerousGoodsProcessingOptionType.php │ │ ├── UploadedDangerousGoodsShipmentAttributeType.php │ │ ├── ValidateDangerousGoodsProcessingOptionType.php │ │ └── WeightUnits.php │ ├── DGLDService │ ├── ComplexType │ │ ├── Address.php │ │ ├── ClientDetail.php │ │ ├── ListDangerousGoodsDetail.php │ │ ├── ListDangerousGoodsReply.php │ │ ├── ListDangerousGoodsRequest.php │ │ ├── Localization.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── CarrierCodeType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── ExpressRegionCode.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── NotificationSeverityType.php │ │ └── ServiceType.php │ ├── InFlightShipmentService │ ├── ComplexType │ │ ├── Address.php │ │ ├── AppointmentDetail.php │ │ ├── AppointmentTimeDetail.php │ │ ├── AssociatedAccount.php │ │ ├── ClientDetail.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── CreditCard.php │ │ ├── CreditCardTransactionAttributesDetail.php │ │ ├── CreditCardTransactionDetail.php │ │ ├── CreditFraudDetectionDetail.php │ │ ├── DeliveryRequestDetail.php │ │ ├── DocumentFormatOptionsRequested.php │ │ ├── InitiativeManifest.php │ │ ├── LinearMeasure.php │ │ ├── LocalTimeRange.php │ │ ├── Localization.php │ │ ├── Money.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── OperationalDocumentPart.php │ │ ├── OperationalDocumentSpecification.php │ │ ├── ParsedContact.php │ │ ├── ParsedContactAndAddress.php │ │ ├── ParsedPersonName.php │ │ ├── Party.php │ │ ├── Payor.php │ │ ├── ProcessDeliveryReply.php │ │ ├── ProcessDeliveryRequest.php │ │ ├── RatedDeliveryDetail.php │ │ ├── RedirectToHoldAtLocationRequestDetail.php │ │ ├── RerouteDeliveryDetail.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentFormat.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentStorageDetail.php │ │ ├── SignatureReleaseDocumentDetail.php │ │ ├── Surcharge.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── UniqueTrackingNumber.php │ │ ├── UserDetail.php │ │ ├── ValidateDeliveryReply.php │ │ ├── ValidateDeliveryRequest.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── AppointmentWindowType.php │ │ ├── AssociatedAccountNumberType.php │ │ ├── AutoConfigurationType.php │ │ ├── CreditCardAuthorizationType.php │ │ ├── CreditCardSettlementScheduleType.php │ │ ├── CreditCardTransactionAttributeType.php │ │ ├── CreditCardType.php │ │ ├── DeliveryActionType.php │ │ ├── DeliveryOptionType.php │ │ ├── DocumentFormatOptionType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── ExpressRegionCode.php │ │ ├── LinearUnits.php │ │ ├── NotificationSeverityType.php │ │ ├── OperationalDocumentType.php │ │ ├── PaymentType.php │ │ ├── RerouteDeliveryType.php │ │ ├── RescheduleDeliveryType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentNamingType.php │ │ ├── ShippingDocumentStockType.php │ │ ├── SurchargeLevelType.php │ │ ├── SurchargeType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TransactionSourceFormat.php │ │ ├── TransitTimeType.php │ │ └── WebServiceEnvironment.php │ ├── LocationsService │ ├── ComplexType │ │ ├── Address.php │ │ ├── AddressAncillaryDetail.php │ │ ├── AddressToLocationRelationshipDetail.php │ │ ├── CarrierDetail.php │ │ ├── ClearanceCountryDetail.php │ │ ├── ClearanceLocationDetail.php │ │ ├── ClientDetail.php │ │ ├── Contact.php │ │ ├── Dimensions.php │ │ ├── Distance.php │ │ ├── DistanceAndLocationDetail.php │ │ ├── Holiday.php │ │ ├── LatestDropOffDetail.php │ │ ├── LatestDropoffOverlayDetail.php │ │ ├── Localization.php │ │ ├── LocationCapabilityDetail.php │ │ ├── LocationContactAndAddress.php │ │ ├── LocationDetail.php │ │ ├── LocationFieldsForInternalFedexUseDetail.php │ │ ├── LocationHours.php │ │ ├── LocationIdentificationDetail.php │ │ ├── LocationPackageLimitsDetail.php │ │ ├── LocationSortDetail.php │ │ ├── LocationSupportedPackageDetail.php │ │ ├── LocationSupportedShipmentDetail.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── ReservationAvailabilityDetail.php │ │ ├── SearchLocationConstraints.php │ │ ├── SearchLocationsReply.php │ │ ├── SearchLocationsRequest.php │ │ ├── ShippingHoliday.php │ │ ├── TimeRange.php │ │ ├── TransactionDetail.php │ │ ├── UniqueTrackingNumber.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── CarrierCodeType.php │ │ ├── ConsolidationType.php │ │ ├── CountryRelationshipType.php │ │ ├── DayOfWeekType.php │ │ ├── DistanceUnits.php │ │ ├── DistributionClearanceType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExLocationType.php │ │ ├── LatestDropOffOverlayType.php │ │ ├── LinearUnits.php │ │ ├── LocationAccessibilityType.php │ │ ├── LocationAttributesForInternalFedexUseType.php │ │ ├── LocationAttributesType.php │ │ ├── LocationContentOptionType.php │ │ ├── LocationSearchFilterType.php │ │ ├── LocationSortCriteriaType.php │ │ ├── LocationSortOrderType.php │ │ ├── LocationTransferOfPossessionType.php │ │ ├── LocationsSearchCriteriaType.php │ │ ├── MultipleMatchesActionType.php │ │ ├── NotificationSeverityType.php │ │ ├── OperationalHoursType.php │ │ ├── PackageSpecialServiceType.php │ │ ├── ReservationAttributesType.php │ │ ├── ServiceCategoryType.php │ │ ├── ServiceType.php │ │ ├── ShippingActionType.php │ │ ├── SupportedRedirectToHoldServiceType.php │ │ └── WeightUnits.php │ ├── OpenShipService │ ├── ComplexType │ │ ├── AddPackagesToOpenShipmentReply.php │ │ ├── AddPackagesToOpenShipmentRequest.php │ │ ├── AdditionalLabelsDetail.php │ │ ├── Address.php │ │ ├── AdrLicenseDetail.php │ │ ├── AlcoholDetail.php │ │ ├── AncillaryFeeAndTax.php │ │ ├── AssociatedAccount.php │ │ ├── AssociatedFreightLineItemDetail.php │ │ ├── AssociatedShipmentDetail.php │ │ ├── AssociatedTrackingId.php │ │ ├── AsynchronousProcessingOptionsRequested.php │ │ ├── AsynchronousProcessingResultsDetail.php │ │ ├── BatteryClassificationDetail.php │ │ ├── BinaryBarcode.php │ │ ├── BrokerDetail.php │ │ ├── CertificateOfOriginDetail.php │ │ ├── ClientDetail.php │ │ ├── CodAddTransportationChargesDetail.php │ │ ├── CodDetail.php │ │ ├── CodReturnPackageDetail.php │ │ ├── CommercialInvoice.php │ │ ├── CommercialInvoiceDetail.php │ │ ├── CommoditiesByTrackingNumberReportDetail.php │ │ ├── Commodity.php │ │ ├── CompletedCodDetail.php │ │ ├── CompletedConsolidationDetail.php │ │ ├── CompletedEtdDetail.php │ │ ├── CompletedHazardousPackageDetail.php │ │ ├── CompletedHazardousShipmentDetail.php │ │ ├── CompletedHazardousSummaryDetail.php │ │ ├── CompletedHoldAtLocationDetail.php │ │ ├── CompletedPackageDetail.php │ │ ├── CompletedShipmentConsolidationDetail.php │ │ ├── CompletedShipmentDetail.php │ │ ├── CompletedSmartPostDetail.php │ │ ├── CompletedTagDetail.php │ │ ├── CompletedTransborderDistributionDetail.php │ │ ├── CondensedCrnReportDetail.php │ │ ├── ConfigurableLabelReferenceEntry.php │ │ ├── ConfirmConsolidationReply.php │ │ ├── ConfirmConsolidationRequest.php │ │ ├── ConfirmOpenShipmentReply.php │ │ ├── ConfirmOpenShipmentRequest.php │ │ ├── ConsolidatedCommercialInvoiceDetail.php │ │ ├── ConsolidatedCommoditiesSummaryDetail.php │ │ ├── ConsolidatedCommodity.php │ │ ├── ConsolidatedCommodityDestinationDetail.php │ │ ├── ConsolidatedCommodityDetail.php │ │ ├── ConsolidatedPartyReportDetail.php │ │ ├── ConsolidatedSoldToSummaryReportDetail.php │ │ ├── ConsolidationCustomsLinehaulReportDetail.php │ │ ├── ConsolidationDataSource.php │ │ ├── ConsolidationDocument.php │ │ ├── ConsolidationDocumentSpecification.php │ │ ├── ConsolidationKey.php │ │ ├── ConsolidationShipment.php │ │ ├── ConsolidationSpecialServicesRequested.php │ │ ├── ConsolidationTransborderDistributionDetail.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── ContentRecord.php │ │ ├── CreateConsolidationReply.php │ │ ├── CreateConsolidationRequest.php │ │ ├── CreateOpenShipmentReply.php │ │ ├── CreateOpenShipmentRequest.php │ │ ├── CrnReportDetail.php │ │ ├── CurrencyExchangeRate.php │ │ ├── CustomConsolidationDocumentDetail.php │ │ ├── CustomDeliveryWindowDetail.php │ │ ├── CustomDocumentDetail.php │ │ ├── CustomLabelBarcodeEntry.php │ │ ├── CustomLabelBoxEntry.php │ │ ├── CustomLabelDetail.php │ │ ├── CustomLabelGraphicEntry.php │ │ ├── CustomLabelPosition.php │ │ ├── CustomLabelTextBoxEntry.php │ │ ├── CustomLabelTextEntry.php │ │ ├── CustomerImageUsage.php │ │ ├── CustomerReference.php │ │ ├── CustomerSpecifiedLabelDetail.php │ │ ├── CustomsClearanceDetail.php │ │ ├── CustomsDeclarationStatementDetail.php │ │ ├── CustomsOptionDetail.php │ │ ├── CustomsPackingListDetail.php │ │ ├── DangerousGoodsContainer.php │ │ ├── DangerousGoodsDetail.php │ │ ├── DangerousGoodsShippersDeclarationDetail.php │ │ ├── DangerousGoodsSignatory.php │ │ ├── DateRange.php │ │ ├── DeclarationCurrency.php │ │ ├── DeleteOpenConsolidationReply.php │ │ ├── DeleteOpenConsolidationRequest.php │ │ ├── DeleteOpenShipmentReply.php │ │ ├── DeleteOpenShipmentRequest.php │ │ ├── DeletePackagesFromOpenShipmentReply.php │ │ ├── DeletePackagesFromOpenShipmentRequest.php │ │ ├── DeletePendingShipmentReply.php │ │ ├── DeletePendingShipmentRequest.php │ │ ├── DeleteShipmentRequest.php │ │ ├── DeliveryOnInvoiceAcceptanceDetail.php │ │ ├── DestinationControlDetail.php │ │ ├── Dimensions.php │ │ ├── DocTabContent.php │ │ ├── DocTabContentBarcoded.php │ │ ├── DocTabContentZone001.php │ │ ├── DocTabZoneSpecification.php │ │ ├── DocumentFormatOptionsRequested.php │ │ ├── DocumentGenerationDetail.php │ │ ├── DocumentRequirementsDetail.php │ │ ├── EMailDetail.php │ │ ├── EMailLabelDetail.php │ │ ├── EMailRecipient.php │ │ ├── EPaymentDetail.php │ │ ├── EdtCommodityTax.php │ │ ├── EdtExciseCondition.php │ │ ├── EdtTaxDetail.php │ │ ├── EmailOptionsRequested.php │ │ ├── EtdDetail.php │ │ ├── ExportDeclarationDetail.php │ │ ├── ExportDetail.php │ │ ├── ExpressFreightDetail.php │ │ ├── FreightAddressLabelDetail.php │ │ ├── FreightBaseCharge.php │ │ ├── FreightBillOfLadingDetail.php │ │ ├── FreightGuaranteeDetail.php │ │ ├── FreightRateDetail.php │ │ ├── FreightRateNotation.php │ │ ├── FreightShipmentDetail.php │ │ ├── FreightShipmentLineItem.php │ │ ├── FreightSpecialServicePayment.php │ │ ├── GeneralAgencyAgreementDetail.php │ │ ├── GetConfirmConsolidationResultsReply.php │ │ ├── GetConfirmConsolidationResultsRequest.php │ │ ├── GetConfirmOpenShipmentResultsReply.php │ │ ├── GetConfirmOpenShipmentResultsRequest.php │ │ ├── GetCreateOpenShipmentResultsReply.php │ │ ├── GetCreateOpenShipmentResultsRequest.php │ │ ├── GetModifyOpenShipmentResultsReply.php │ │ ├── GetModifyOpenShipmentResultsRequest.php │ │ ├── HazardousCommodityContent.php │ │ ├── HazardousCommodityDescription.php │ │ ├── HazardousCommodityInnerReceptacleDetail.php │ │ ├── HazardousCommodityOptionDetail.php │ │ ├── HazardousCommodityPackagingDetail.php │ │ ├── HazardousCommodityPackingDetail.php │ │ ├── HazardousCommodityQuantityDetail.php │ │ ├── HoldAtLocationDetail.php │ │ ├── HomeDeliveryPremiumDetail.php │ │ ├── InternationalControlledExportDetail.php │ │ ├── InternationalDistributionDetail.php │ │ ├── InternationalDistributionSummaryDetail.php │ │ ├── InternationalTrafficInArmsRegulationsDetail.php │ │ ├── LabelSpecification.php │ │ ├── LiabilityCoverageDetail.php │ │ ├── LicenseOrPermitDetail.php │ │ ├── LinearMeasure.php │ │ ├── Localization.php │ │ ├── Measure.php │ │ ├── Message.php │ │ ├── MessageParameter.php │ │ ├── ModifyConsolidationReply.php │ │ ├── ModifyConsolidationRequest.php │ │ ├── ModifyOpenShipmentReply.php │ │ ├── ModifyOpenShipmentRequest.php │ │ ├── ModifyPackageInOpenShipmentReply.php │ │ ├── ModifyPackageInOpenShipmentRequest.php │ │ ├── Money.php │ │ ├── NaftaCertificateOfOriginDetail.php │ │ ├── NaftaCommodityDetail.php │ │ ├── NaftaLowValueStatementDetail.php │ │ ├── NaftaProducer.php │ │ ├── NetExplosiveDetail.php │ │ ├── Notification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── OfferingIdentifierDetail.php │ │ ├── Op900Detail.php │ │ ├── OperationalInstruction.php │ │ ├── PackageBarcodes.php │ │ ├── PackageDocument.php │ │ ├── PackageOperationalDetail.php │ │ ├── PackageRateDetail.php │ │ ├── PackageRating.php │ │ ├── PackageSpecialServicesRequested.php │ │ ├── PackagingDescription.php │ │ ├── Party.php │ │ ├── Payment.php │ │ ├── Payor.php │ │ ├── PendingShipmentAccessDetail.php │ │ ├── PendingShipmentAccessorDetail.php │ │ ├── PendingShipmentDetail.php │ │ ├── PendingShipmentProcessingOptionsRequested.php │ │ ├── PickupDetail.php │ │ ├── PrintedReference.php │ │ ├── PriorityAlertDetail.php │ │ ├── ProductName.php │ │ ├── RadioactivityDetail.php │ │ ├── RadionuclideActivity.php │ │ ├── RadionuclideDetail.php │ │ ├── RateDiscount.php │ │ ├── Rebate.php │ │ ├── RecipientCustomsId.php │ │ ├── RecommendedDocumentSpecification.php │ │ ├── RegulatoryAdvisoryDetail.php │ │ ├── RegulatoryLabelContentDetail.php │ │ ├── RegulatoryProhibition.php │ │ ├── RegulatoryWaiver.php │ │ ├── ReprintShippingDocumentsReply.php │ │ ├── ReprintShippingDocumentsRequest.php │ │ ├── RequestedConsolidation.php │ │ ├── RequestedDistributionLocation.php │ │ ├── RequestedPackageLineItem.php │ │ ├── RequestedShipment.php │ │ ├── RetrieveConsolidatedCommoditiesReply.php │ │ ├── RetrieveConsolidatedCommoditiesRequest.php │ │ ├── RetrieveConsolidationReply.php │ │ ├── RetrieveConsolidationRequest.php │ │ ├── RetrieveOpenShipmentReply.php │ │ ├── RetrieveOpenShipmentRequest.php │ │ ├── RetrievePackageInOpenShipmentReply.php │ │ ├── RetrievePackageInOpenShipmentRequest.php │ │ ├── ReturnAssociationDetail.php │ │ ├── ReturnEMailDetail.php │ │ ├── ReturnInstructionsDetail.php │ │ ├── ReturnShipmentDetail.php │ │ ├── Rma.php │ │ ├── ServiceDescription.php │ │ ├── ShipmentAdvisoryDetail.php │ │ ├── ShipmentAuthorizationDetail.php │ │ ├── ShipmentConfigurationData.php │ │ ├── ShipmentConsolidationDetail.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentInclusionSpecification.php │ │ ├── ShipmentInternationalDistributionDetail.php │ │ ├── ShipmentLegRateDetail.php │ │ ├── ShipmentManifestDetail.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── ShipmentOperationalDetail.php │ │ ├── ShipmentProcessingOptionsRequested.php │ │ ├── ShipmentRateDetail.php │ │ ├── ShipmentRating.php │ │ ├── ShipmentReply.php │ │ ├── ShipmentSpecialServicesRequested.php │ │ ├── ShipmentTransborderDistributionDetail.php │ │ ├── ShipperConveyanceDetail.php │ │ ├── ShippingDocument.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentFormat.php │ │ ├── ShippingDocumentPart.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentSpecification.php │ │ ├── ShippingDocumentStorageDetail.php │ │ ├── SignatureOptionDetail.php │ │ ├── SmartPostShipmentDetail.php │ │ ├── SmartPostShipmentProcessingOptionsRequested.php │ │ ├── SpecialServiceDescription.php │ │ ├── SplitPaymentDetail.php │ │ ├── SplitPaymentSpecification.php │ │ ├── StringBarcode.php │ │ ├── Surcharge.php │ │ ├── Tax.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── TransborderDistributionLtlDetail.php │ │ ├── TransborderDistributionSpecialServicesRequested.php │ │ ├── TransborderDistributionSummaryDetail.php │ │ ├── UploadDocumentReferenceDetail.php │ │ ├── UsmcaCertificationOfOriginDetail.php │ │ ├── UsmcaCommercialInvoiceCertificationOfOriginDetail.php │ │ ├── UsmcaCommodityDetail.php │ │ ├── ValidateOpenShipmentReply.php │ │ ├── ValidateOpenShipmentRequest.php │ │ ├── ValidatedHazardousCommodityContent.php │ │ ├── ValidatedHazardousCommodityDescription.php │ │ ├── ValidatedHazardousContainer.php │ │ ├── VariableHandlingChargeDetail.php │ │ ├── VariableHandlingCharges.php │ │ ├── VersionId.php │ │ ├── Volume.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── AccessorRoleType.php │ │ ├── AddPackagesToOpenShipmentActionType.php │ │ ├── AdditionalLabelsType.php │ │ ├── AlcoholRecipientType.php │ │ ├── AncillaryFeeAndTaxType.php │ │ ├── AssociatedAccountNumberType.php │ │ ├── AssociatedShipmentType.php │ │ ├── AssociatedTrackingIdType.php │ │ ├── AsynchronousProcessingOptionType.php │ │ ├── AsynchronousProcessingResultType.php │ │ ├── B13AFilingOptionType.php │ │ ├── BarcodeSymbologyType.php │ │ ├── BatteryMaterialType.php │ │ ├── BatteryPackingType.php │ │ ├── BatteryRegulatorySubType.php │ │ ├── BinaryBarcodeType.php │ │ ├── BrokerType.php │ │ ├── CarrierCodeType.php │ │ ├── ChargeBasisLevelType.php │ │ ├── ClearanceBrokerageType.php │ │ ├── CodAddTransportationChargeBasisType.php │ │ ├── CodAdjustmentType.php │ │ ├── CodCollectionType.php │ │ ├── CodReturnReferenceIndicatorType.php │ │ ├── CommodityPurposeType.php │ │ ├── CompletedEtdType.php │ │ ├── ConsolidationDataSourceType.php │ │ ├── ConsolidationDataType.php │ │ ├── ConsolidationShipmentRoleType.php │ │ ├── ConsolidationSpecialServiceType.php │ │ ├── ConsolidationType.php │ │ ├── CreateOpenShipmentActionType.php │ │ ├── CustomDeliveryWindowType.php │ │ ├── CustomLabelCoordinateUnits.php │ │ ├── CustomerImageUsageType.php │ │ ├── CustomerReferenceType.php │ │ ├── CustomerSpecifiedLabelGenerationOptionType.php │ │ ├── CustomsDeclarationStatementType.php │ │ ├── CustomsOptionType.php │ │ ├── CustomsRoleType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DangerousGoodsPackingOptionType.php │ │ ├── DayOfWeekType.php │ │ ├── DeclarationValueType.php │ │ ├── DeletionControlType.php │ │ ├── DestinationControlStatementType.php │ │ ├── DistributionClearanceType.php │ │ ├── DocTabContentType.php │ │ ├── DocTabZoneJustificationType.php │ │ ├── DocumentFormatOptionType.php │ │ ├── DropoffType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EdtRequestType.php │ │ ├── EdtTaxType.php │ │ ├── EmailOptionType.php │ │ ├── EnterpriseDocumentType.php │ │ ├── EtdAttributeType.php │ │ ├── FedExDistributionLocationType.php │ │ ├── FedExLocationType.php │ │ ├── FreightBaseChargeCalculationType.php │ │ ├── FreightChargeBasisType.php │ │ ├── FreightClassType.php │ │ ├── FreightCollectTermsType.php │ │ ├── FreightGuaranteeType.php │ │ ├── FreightOnValueType.php │ │ ├── FreightRateQuoteType.php │ │ ├── FreightShipmentRoleType.php │ │ ├── GroundDeliveryEligibilityType.php │ │ ├── HazardousCommodityAttributeType.php │ │ ├── HazardousCommodityDescriptionProcessingOptionType.php │ │ ├── HazardousCommodityLabelTextOptionType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityPackingGroupType.php │ │ ├── HazardousCommodityQuantityType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── HazardousContainerPackingType.php │ │ ├── HomeDeliveryPremiumType.php │ │ ├── ImageId.php │ │ ├── InternationalControlledExportType.php │ │ ├── InternationalDocumentContentType.php │ │ ├── LabelFormatType.php │ │ ├── LabelMaskableDataType.php │ │ ├── LabelOrderType.php │ │ ├── LabelPrintingOrientationType.php │ │ ├── LabelRotationType.php │ │ ├── LabelStockType.php │ │ ├── LiabilityCoverageType.php │ │ ├── LinearUnits.php │ │ ├── MinimumChargeType.php │ │ ├── ModifyPackageInOpenShipmentActionType.php │ │ ├── NaftaImporterSpecificationType.php │ │ ├── NaftaNetCostMethodCode.php │ │ ├── NaftaPreferenceCriterionCode.php │ │ ├── NaftaProducerDeterminationCode.php │ │ ├── NaftaProducerSpecificationType.php │ │ ├── NetExplosiveClassificationType.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── OversizeClassType.php │ │ ├── PackageSpecialServiceType.php │ │ ├── PackagingType.php │ │ ├── PageQuadrantType.php │ │ ├── PaymentType.php │ │ ├── PendingShipmentProcessingOptionType.php │ │ ├── PendingShipmentType.php │ │ ├── PhysicalFormType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PickupRequestSourceType.php │ │ ├── PickupRequestType.php │ │ ├── PricingCodeType.php │ │ ├── PrintedReferenceType.php │ │ ├── PriorityAlertEnhancementType.php │ │ ├── ProhibitionSourceType.php │ │ ├── ProhibitionStatusType.php │ │ ├── ProhibitionType.php │ │ ├── PurposeOfShipmentType.php │ │ ├── RadioactiveContainerClassType.php │ │ ├── RadioactiveLabelType.php │ │ ├── RadioactivityUnitOfMeasure.php │ │ ├── RateDimensionalDivisorType.php │ │ ├── RateDiscountType.php │ │ ├── RateElementBasisType.php │ │ ├── RateRequestType.php │ │ ├── RateTypeBasisType.php │ │ ├── RatedWeightMethod.php │ │ ├── RebateType.php │ │ ├── RecipientCustomsIdType.php │ │ ├── RecommendedDocumentType.php │ │ ├── RegulatoryControlType.php │ │ ├── RegulatoryLabelType.php │ │ ├── RelativeVerticalPositionType.php │ │ ├── RequestedConsolidationDocumentType.php │ │ ├── RequestedShippingDocumentType.php │ │ ├── RequiredDocumentType.php │ │ ├── RequirementType.php │ │ ├── ReturnEMailAllowedSpecialServiceType.php │ │ ├── ReturnType.php │ │ ├── ReturnedConsolidationDocumentType.php │ │ ├── ReturnedRateType.php │ │ ├── ReturnedShippingDocumentType.php │ │ ├── RotationType.php │ │ ├── SecondaryBarcodeType.php │ │ ├── ServiceCategoryType.php │ │ ├── ServiceType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── ShipmentProcessingOptionType.php │ │ ├── ShipmentRuleType.php │ │ ├── ShipmentSpecialServiceType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentNamingType.php │ │ ├── ShippingDocumentStockType.php │ │ ├── ShippingDocumentStorageDetailType.php │ │ ├── SignatureOptionType.php │ │ ├── SmartPostAncillaryEndorsementType.php │ │ ├── SmartPostIndiciaType.php │ │ ├── SmartPostShipmentProcessingOptionType.php │ │ ├── SpecialRatingAppliedType.php │ │ ├── SplitPaymentType.php │ │ ├── StringBarcodeType.php │ │ ├── SurchargeLevelType.php │ │ ├── SurchargeType.php │ │ ├── TaxType.php │ │ ├── TaxesOrMiscellaneousChargeType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TransborderDistributionRoutingType.php │ │ ├── TransborderDistributionSpecialServiceType.php │ │ ├── TransitTimeType.php │ │ ├── UnitSystemType.php │ │ ├── UploadDocumentIdProducer.php │ │ ├── UploadDocumentProducerType.php │ │ ├── UploadDocumentType.php │ │ ├── UsmcaCertifierSpecificationType.php │ │ ├── UsmcaImporterSpecificationType.php │ │ ├── UsmcaOriginCriterionCode.php │ │ ├── UsmcaProducerSpecificationType.php │ │ ├── VolumeUnits.php │ │ └── WeightUnits.php │ ├── PackageMovementInformationService │ ├── ComplexType │ │ ├── Address.php │ │ ├── ClientDetail.php │ │ ├── Localization.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── PostalCodeInquiryReply.php │ │ ├── PostalCodeInquiryRequest.php │ │ ├── PostalCodeServiceAreaDescription.php │ │ ├── ServiceAvailabilityOption.php │ │ ├── ServiceAvailabilityReply.php │ │ ├── ServiceAvailabilityRequest.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── CarrierCodeType.php │ │ ├── DayOfWeekType.php │ │ ├── NotificationSeverityType.php │ │ ├── PackagingType.php │ │ └── ServiceType.php │ ├── PickupService │ ├── ComplexType │ │ ├── Address.php │ │ ├── AssociatedAccount.php │ │ ├── CancelPickupReply.php │ │ ├── CancelPickupRequest.php │ │ ├── ClientDetail.php │ │ ├── CodAddTransportationChargesDetail.php │ │ ├── CodDetail.php │ │ ├── CompletedFreightPickupDetail.php │ │ ├── CompletedFreightPickupLineItem.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── CreatePickupReply.php │ │ ├── CreatePickupRequest.php │ │ ├── CustomDeliveryWindowDetail.php │ │ ├── CustomerReference.php │ │ ├── DateRange.php │ │ ├── DeliveryOnInvoiceAcceptanceDetail.php │ │ ├── DetentionDetail.php │ │ ├── Dimensions.php │ │ ├── Distance.php │ │ ├── EMailDetail.php │ │ ├── EMailLabelDetail.php │ │ ├── EMailRecipient.php │ │ ├── EPaymentDetail.php │ │ ├── EmailOptionsRequested.php │ │ ├── EnterprisePrivilegeDetail.php │ │ ├── EtdDetail.php │ │ ├── ExpressFreightPickupDetail.php │ │ ├── ExtraLaborDetail.php │ │ ├── FaxDetail.php │ │ ├── FlatbedTrailerDetail.php │ │ ├── FreightGuaranteeDetail.php │ │ ├── FreightPickupDetail.php │ │ ├── FreightPickupLineItem.php │ │ ├── FreightServiceCenterDetail.php │ │ ├── HoldAtLocationDetail.php │ │ ├── HomeDeliveryPremiumDetail.php │ │ ├── InternationalControlledExportDetail.php │ │ ├── InternationalTrafficInArmsRegulationsDetail.php │ │ ├── Localization.php │ │ ├── MarkingOrTaggingDetail.php │ │ ├── Money.php │ │ ├── NonBusinessTimeDetail.php │ │ ├── Notification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── PagingRequestDetail.php │ │ ├── PagingResultsDetail.php │ │ ├── PalletShrinkwrapDetail.php │ │ ├── PalletsProvidedDetail.php │ │ ├── Party.php │ │ ├── Payment.php │ │ ├── Payor.php │ │ ├── PendingShipmentDetail.php │ │ ├── PendingShipmentProcessingOptionsRequested.php │ │ ├── PickupAvailabilityReply.php │ │ ├── PickupAvailabilityRequest.php │ │ ├── PickupDangerousGoodsDetail.php │ │ ├── PickupHistoryDetailReply.php │ │ ├── PickupHistoryDetailRequest.php │ │ ├── PickupHistoryEvent.php │ │ ├── PickupHistoryServiceSummary.php │ │ ├── PickupHistorySummary.php │ │ ├── PickupHistorySummaryReply.php │ │ ├── PickupHistorySummaryRequest.php │ │ ├── PickupLookupCondition.php │ │ ├── PickupOriginDetail.php │ │ ├── PickupPackageDetail.php │ │ ├── PickupPackageSpecialServicesRequested.php │ │ ├── PickupScheduleOption.php │ │ ├── PickupShipmentAttributes.php │ │ ├── PickupShipmentSpecialServicesRequested.php │ │ ├── PickupTagDetail.php │ │ ├── PolicyGridManifest.php │ │ ├── PriorityAlertDetail.php │ │ ├── RecommendedDocumentSpecification.php │ │ ├── RequestedPickupPackageDetail.php │ │ ├── RequestedPickupShipmentDetail.php │ │ ├── RestrictionsAndPrivilegesPolicyDetail.php │ │ ├── ReturnAssociationDetail.php │ │ ├── ReturnEMailDetail.php │ │ ├── ReturnShipmentDetail.php │ │ ├── Rma.php │ │ ├── ShipmentAssemblyDetail.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── ShipmentSpecialServicesRequested.php │ │ ├── SignatureOptionDetail.php │ │ ├── SmsDetail.php │ │ ├── SortAndSegregateDetail.php │ │ ├── SpecialEquipmentDetail.php │ │ ├── SpecialEquipmentLineItem.php │ │ ├── StorageDetail.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── UpdatePickupReply.php │ │ ├── UpdatePickupRequest.php │ │ ├── UploadDocumentDetail.php │ │ ├── UploadDocumentReferenceDetail.php │ │ ├── UserDetail.php │ │ ├── VariationOptionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ ├── WeighingDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── AccessorRoleType.php │ │ ├── AssociatedAccountNumberType.php │ │ ├── AutoConfigurationType.php │ │ ├── BuildingPartCode.php │ │ ├── CarrierCodeType.php │ │ ├── ChargeBasisLevelType.php │ │ ├── CloseTimeType.php │ │ ├── CodAddTransportationChargeBasisType.php │ │ ├── CodCollectionType.php │ │ ├── CodReturnReferenceIndicatorType.php │ │ ├── CountryRelationshipType.php │ │ ├── CreatePickupRequestProcessingOptionType.php │ │ ├── CustomDeliveryWindowType.php │ │ ├── CustomerReferenceType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DayOfWeekType.php │ │ ├── DistanceUnits.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EmailOptionType.php │ │ ├── EnterprisePermissionType.php │ │ ├── EtdAttributeType.php │ │ ├── EtdConfirmationType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExLocationType.php │ │ ├── FlatbedTrailerOption.php │ │ ├── FreightGuaranteeType.php │ │ ├── FreightServiceSchedulingType.php │ │ ├── FreightShipmentRoleType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── HomeDeliveryPremiumType.php │ │ ├── InternationalControlledExportType.php │ │ ├── LinearUnits.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── PackageSpecialServiceType.php │ │ ├── PackagingType.php │ │ ├── PaymentType.php │ │ ├── PendingShipmentProcessingOptionType.php │ │ ├── PendingShipmentType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PickupBuildingLocationType.php │ │ ├── PickupEventType.php │ │ ├── PickupExceptionType.php │ │ ├── PickupLookupConditionType.php │ │ ├── PickupRequestType.php │ │ ├── PickupServiceCategoryType.php │ │ ├── PickupServiceLevelType.php │ │ ├── PickupStatusType.php │ │ ├── PickupType.php │ │ ├── PriorityAlertEnhancementType.php │ │ ├── RateLevelBasisType.php │ │ ├── RateTypeBasisType.php │ │ ├── RecommendedDocumentType.php │ │ ├── RequestedShippingDocumentType.php │ │ ├── RestrictionsAndPrivilegesPolicyExceptionType.php │ │ ├── ReturnEMailAllowedSpecialServiceType.php │ │ ├── ReturnType.php │ │ ├── ServiceType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── ShipmentSpecialServiceType.php │ │ ├── SignatureOptionType.php │ │ ├── SpecialEquipmentType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TrailerSizeType.php │ │ ├── TransactionSourceFormat.php │ │ ├── TruckType.php │ │ ├── UpdatePickupRequestProcessingOptionType.php │ │ ├── UploadDocumentIdProducer.php │ │ ├── UploadDocumentProducerType.php │ │ ├── UploadDocumentType.php │ │ ├── WebServiceEnvironment.php │ │ ├── WeighingScaleType.php │ │ └── WeightUnits.php │ ├── RateService │ ├── ComplexType │ │ ├── AdditionalLabelsDetail.php │ │ ├── Address.php │ │ ├── AlcoholDetail.php │ │ ├── AncillaryFeeAndTax.php │ │ ├── AssociatedFreightLineItemDetail.php │ │ ├── BatteryClassificationDetail.php │ │ ├── BrokerDetail.php │ │ ├── CertificateOfOriginDetail.php │ │ ├── CleansedAddressAndLocationDetail.php │ │ ├── ClientDetail.php │ │ ├── CodAddTransportationChargesDetail.php │ │ ├── CodDetail.php │ │ ├── CommercialInvoice.php │ │ ├── CommercialInvoiceDetail.php │ │ ├── CommitDetail.php │ │ ├── Commodity.php │ │ ├── ConfigurableLabelReferenceEntry.php │ │ ├── ConsolidationKey.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── ContentRecord.php │ │ ├── CurrencyExchangeRate.php │ │ ├── CustomDeliveryWindowDetail.php │ │ ├── CustomDocumentDetail.php │ │ ├── CustomLabelBarcodeEntry.php │ │ ├── CustomLabelBoxEntry.php │ │ ├── CustomLabelDetail.php │ │ ├── CustomLabelGraphicEntry.php │ │ ├── CustomLabelPosition.php │ │ ├── CustomLabelTextBoxEntry.php │ │ ├── CustomLabelTextEntry.php │ │ ├── CustomerImageUsage.php │ │ ├── CustomerReference.php │ │ ├── CustomerSpecifiedLabelDetail.php │ │ ├── CustomsClearanceDetail.php │ │ ├── CustomsOptionDetail.php │ │ ├── DangerousGoodsContainer.php │ │ ├── DangerousGoodsDetail.php │ │ ├── DangerousGoodsShippersDeclarationDetail.php │ │ ├── DangerousGoodsSignatory.php │ │ ├── DateRange.php │ │ ├── DelayDetail.php │ │ ├── DeliveryOnInvoiceAcceptanceDetail.php │ │ ├── DestinationControlDetail.php │ │ ├── Dimensions.php │ │ ├── Distance.php │ │ ├── DocTabContent.php │ │ ├── DocTabContentBarcoded.php │ │ ├── DocTabContentZone001.php │ │ ├── DocTabZoneSpecification.php │ │ ├── DocumentFormatOptionsRequested.php │ │ ├── DocumentLineItem.php │ │ ├── EMailDetail.php │ │ ├── EPaymentDetail.php │ │ ├── EdtCommodityTax.php │ │ ├── EdtExciseCondition.php │ │ ├── EdtTaxDetail.php │ │ ├── EtdDetail.php │ │ ├── ExportDeclarationDetail.php │ │ ├── ExportDetail.php │ │ ├── ExpressFreightDetail.php │ │ ├── ExpressFreightDetailContact.php │ │ ├── FlatbedTrailerDetail.php │ │ ├── FreightAddressLabelDetail.php │ │ ├── FreightBaseCharge.php │ │ ├── FreightCommitDetail.php │ │ ├── FreightGuaranteeDetail.php │ │ ├── FreightRateDetail.php │ │ ├── FreightRateNotation.php │ │ ├── FreightServiceCenterDetail.php │ │ ├── FreightShipmentDetail.php │ │ ├── FreightShipmentLineItem.php │ │ ├── FreightSpecialServicePayment.php │ │ ├── GeneralAgencyAgreementDetail.php │ │ ├── HazardousCommodityContent.php │ │ ├── HazardousCommodityDescription.php │ │ ├── HazardousCommodityInnerReceptacleDetail.php │ │ ├── HazardousCommodityOptionDetail.php │ │ ├── HazardousCommodityPackagingDetail.php │ │ ├── HazardousCommodityPackingDetail.php │ │ ├── HazardousCommodityQuantityDetail.php │ │ ├── HoldAtLocationDetail.php │ │ ├── HomeDeliveryPremiumDetail.php │ │ ├── InternationalControlledExportDetail.php │ │ ├── InternationalTrafficInArmsRegulationsDetail.php │ │ ├── KeyValueDetail.php │ │ ├── LabelSpecification.php │ │ ├── LiabilityCoverageDetail.php │ │ ├── LinearMeasure.php │ │ ├── Localization.php │ │ ├── Measure.php │ │ ├── Money.php │ │ ├── NaftaCertificateOfOriginDetail.php │ │ ├── NaftaCommodityDetail.php │ │ ├── NaftaProducer.php │ │ ├── NetExplosiveDetail.php │ │ ├── Notification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── Op900Detail.php │ │ ├── PackageRateDetail.php │ │ ├── PackageSpecialServicesRequested.php │ │ ├── Party.php │ │ ├── Payment.php │ │ ├── Payor.php │ │ ├── PendingShipmentDetail.php │ │ ├── PendingShipmentProcessingOptionsRequested.php │ │ ├── PickupDetail.php │ │ ├── PriorityAlertDetail.php │ │ ├── ProductName.php │ │ ├── RadioactivityDetail.php │ │ ├── RadionuclideActivity.php │ │ ├── RadionuclideDetail.php │ │ ├── RateDiscount.php │ │ ├── RateReply.php │ │ ├── RateReplyDetail.php │ │ ├── RateRequest.php │ │ ├── RatedPackageDetail.php │ │ ├── RatedShipmentDetail.php │ │ ├── Rebate.php │ │ ├── RecipientCustomsId.php │ │ ├── RecommendedDocumentSpecification.php │ │ ├── RegulatoryLabelContentDetail.php │ │ ├── RequestedPackageLineItem.php │ │ ├── RequestedShipment.php │ │ ├── ReturnAssociationDetail.php │ │ ├── ReturnEMailDetail.php │ │ ├── ReturnInstructionsDetail.php │ │ ├── ReturnShipmentDetail.php │ │ ├── Rma.php │ │ ├── ServiceDescription.php │ │ ├── ServiceSubOptionDetail.php │ │ ├── ShipmentAuthorizationDetail.php │ │ ├── ShipmentConfigurationData.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentLegRateDetail.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── ShipmentRateDetail.php │ │ ├── ShipmentSpecialServicesRequested.php │ │ ├── ShipmentVariationOptionDetail.php │ │ ├── ShipperConveyanceDetail.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentFormat.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentSpecification.php │ │ ├── SignatureOptionDetail.php │ │ ├── SmartPostShipmentDetail.php │ │ ├── SmartPostShipmentProcessingOptionsRequested.php │ │ ├── Surcharge.php │ │ ├── Tax.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── UploadDocumentReferenceDetail.php │ │ ├── UsmcaCertificationOfOriginDetail.php │ │ ├── UsmcaCommercialInvoiceCertificationOfOriginDetail.php │ │ ├── UsmcaCommodityDetail.php │ │ ├── VariableHandlingChargeDetail.php │ │ ├── VariableHandlingCharges.php │ │ ├── VersionId.php │ │ ├── Volume.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── AdditionalLabelsType.php │ │ ├── AlcoholRecipientType.php │ │ ├── AncillaryFeeAndTaxType.php │ │ ├── B13AFilingOptionType.php │ │ ├── BarcodeSymbologyType.php │ │ ├── BatteryMaterialType.php │ │ ├── BatteryPackingType.php │ │ ├── BatteryRegulatorySubType.php │ │ ├── BrokerType.php │ │ ├── CarrierCodeType.php │ │ ├── ChargeBasisLevelType.php │ │ ├── ClearanceBrokerageType.php │ │ ├── CodAddTransportationChargeBasisType.php │ │ ├── CodCollectionType.php │ │ ├── CodReturnReferenceIndicatorType.php │ │ ├── CommitmentDelayType.php │ │ ├── CommodityPurposeType.php │ │ ├── ConsolidationType.php │ │ ├── CustomDeliveryWindowType.php │ │ ├── CustomLabelCoordinateUnits.php │ │ ├── CustomerImageUsageType.php │ │ ├── CustomerReferenceType.php │ │ ├── CustomerSpecifiedLabelGenerationOptionType.php │ │ ├── CustomsOptionType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DangerousGoodsPackingOptionType.php │ │ ├── DayOfWeekType.php │ │ ├── DelayLevelType.php │ │ ├── DelayPointType.php │ │ ├── DestinationControlStatementType.php │ │ ├── DistanceUnits.php │ │ ├── DocTabContentType.php │ │ ├── DocTabZoneJustificationType.php │ │ ├── DocumentFormatOptionType.php │ │ ├── DropoffType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EdtRequestType.php │ │ ├── EdtTaxType.php │ │ ├── EtdAttributeType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExLocationType.php │ │ ├── FlatbedTrailerOption.php │ │ ├── FreightBaseChargeCalculationType.php │ │ ├── FreightChargeBasisType.php │ │ ├── FreightClassType.php │ │ ├── FreightCollectTermsType.php │ │ ├── FreightGuaranteeType.php │ │ ├── FreightOnValueType.php │ │ ├── FreightRateQuoteType.php │ │ ├── FreightServiceSchedulingType.php │ │ ├── FreightShipmentRoleType.php │ │ ├── HazardousCommodityDescriptionProcessingOptionType.php │ │ ├── HazardousCommodityLabelTextOptionType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityPackingGroupType.php │ │ ├── HazardousCommodityQuantityType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── HazardousContainerPackingType.php │ │ ├── HomeDeliveryPremiumType.php │ │ ├── ImageId.php │ │ ├── InternationalControlledExportType.php │ │ ├── InternationalDocumentContentType.php │ │ ├── LabelFormatType.php │ │ ├── LabelMaskableDataType.php │ │ ├── LabelOrderType.php │ │ ├── LabelPrintingOrientationType.php │ │ ├── LabelRotationType.php │ │ ├── LabelStockType.php │ │ ├── LiabilityCoverageType.php │ │ ├── LinearUnits.php │ │ ├── MinimumChargeType.php │ │ ├── NaftaImporterSpecificationType.php │ │ ├── NaftaNetCostMethodCode.php │ │ ├── NaftaPreferenceCriterionCode.php │ │ ├── NaftaProducerDeterminationCode.php │ │ ├── NaftaProducerSpecificationType.php │ │ ├── NetExplosiveClassificationType.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── OversizeClassType.php │ │ ├── PackageSpecialServiceType.php │ │ ├── PackagingType.php │ │ ├── PageQuadrantType.php │ │ ├── PaymentType.php │ │ ├── PendingShipmentProcessingOptionType.php │ │ ├── PendingShipmentType.php │ │ ├── PhysicalFormType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PickupRequestSourceType.php │ │ ├── PickupRequestType.php │ │ ├── PricingCodeType.php │ │ ├── PriorityAlertEnhancementType.php │ │ ├── PurposeOfShipmentType.php │ │ ├── RadioactiveContainerClassType.php │ │ ├── RadioactivityUnitOfMeasure.php │ │ ├── RateDimensionalDivisorType.php │ │ ├── RateDiscountType.php │ │ ├── RateElementBasisType.php │ │ ├── RateRequestType.php │ │ ├── RateTypeBasisType.php │ │ ├── RatedWeightMethod.php │ │ ├── RebateType.php │ │ ├── RecipientCustomsIdType.php │ │ ├── RecommendedDocumentType.php │ │ ├── RegulatoryControlType.php │ │ ├── RegulatoryLabelType.php │ │ ├── RelativeVerticalPositionType.php │ │ ├── RequestedShippingDocumentType.php │ │ ├── RequiredShippingDocumentType.php │ │ ├── ReturnEMailAllowedSpecialServiceType.php │ │ ├── ReturnType.php │ │ ├── ReturnedRateType.php │ │ ├── RotationType.php │ │ ├── SecondaryBarcodeType.php │ │ ├── ServiceOptionType.php │ │ ├── ServiceType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── ShipmentOnlyFieldsType.php │ │ ├── ShipmentSpecialServiceType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentStockType.php │ │ ├── SignatureOptionType.php │ │ ├── SmartPostAncillaryEndorsementType.php │ │ ├── SmartPostIndiciaType.php │ │ ├── SmartPostShipmentProcessingOptionType.php │ │ ├── SpecialRatingAppliedType.php │ │ ├── SurchargeLevelType.php │ │ ├── SurchargeType.php │ │ ├── TaxType.php │ │ ├── TaxesOrMiscellaneousChargeType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TransitTimeType.php │ │ ├── UploadDocumentIdProducer.php │ │ ├── UploadDocumentProducerType.php │ │ ├── UploadDocumentType.php │ │ ├── UsmcaCertifierSpecificationType.php │ │ ├── UsmcaImporterSpecificationType.php │ │ ├── UsmcaOriginCriterionCode.php │ │ ├── UsmcaProducerSpecificationType.php │ │ ├── VolumeUnits.php │ │ └── WeightUnits.php │ ├── Reflection.php │ ├── ReturnTagService │ ├── ComplexType │ │ ├── Address.php │ │ ├── ClientDetail.php │ │ ├── ExpressTagAvailabilityReply.php │ │ ├── ExpressTagAvailabilityRequest.php │ │ ├── Localization.php │ │ ├── Notification.php │ │ ├── NotificationParameter.php │ │ ├── TransactionDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ └── WebAuthenticationDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── ExpressTagAvailabilityType.php │ │ ├── NotificationSeverityType.php │ │ ├── PackagingType.php │ │ └── ServiceType.php │ ├── ShipService │ ├── ComplexType │ │ ├── AdditionalLabelsDetail.php │ │ ├── Address.php │ │ ├── AdrLicenseDetail.php │ │ ├── AlcoholDetail.php │ │ ├── AncillaryFeeAndTax.php │ │ ├── AssociatedAccount.php │ │ ├── AssociatedFreightLineItemDetail.php │ │ ├── AssociatedShipmentDetail.php │ │ ├── BatteryClassificationDetail.php │ │ ├── BinaryBarcode.php │ │ ├── BrokerDetail.php │ │ ├── CertificateOfOriginDetail.php │ │ ├── ClientDetail.php │ │ ├── CodAddTransportationChargesDetail.php │ │ ├── CodDetail.php │ │ ├── CodReturnPackageDetail.php │ │ ├── CommercialInvoice.php │ │ ├── CommercialInvoiceDetail.php │ │ ├── Commodity.php │ │ ├── CompletedCodDetail.php │ │ ├── CompletedEtdDetail.php │ │ ├── CompletedHazardousPackageDetail.php │ │ ├── CompletedHazardousShipmentDetail.php │ │ ├── CompletedHazardousSummaryDetail.php │ │ ├── CompletedHoldAtLocationDetail.php │ │ ├── CompletedPackageDetail.php │ │ ├── CompletedShipmentDetail.php │ │ ├── CompletedSmartPostDetail.php │ │ ├── CompletedTagDetail.php │ │ ├── ConfigurableLabelReferenceEntry.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── ContentRecord.php │ │ ├── CreditCard.php │ │ ├── CreditCardTransactionAttributesDetail.php │ │ ├── CreditCardTransactionDetail.php │ │ ├── CreditFraudDetectionDetail.php │ │ ├── CurrencyExchangeRate.php │ │ ├── CustomDeliveryWindowDetail.php │ │ ├── CustomDiscountExclusionDetail.php │ │ ├── CustomDocumentDetail.php │ │ ├── CustomLabelBarcodeEntry.php │ │ ├── CustomLabelBoxEntry.php │ │ ├── CustomLabelDetail.php │ │ ├── CustomLabelGraphicEntry.php │ │ ├── CustomLabelPosition.php │ │ ├── CustomLabelTextBoxEntry.php │ │ ├── CustomLabelTextEntry.php │ │ ├── CustomRatingOptionDetail.php │ │ ├── CustomTransitTimeDetail.php │ │ ├── CustomerImageUsage.php │ │ ├── CustomerReference.php │ │ ├── CustomerSpecifiedLabelDetail.php │ │ ├── CustomsClearanceDetail.php │ │ ├── CustomsDeclarationStatementDetail.php │ │ ├── CustomsOptionDetail.php │ │ ├── DangerousGoodsContainer.php │ │ ├── DangerousGoodsDetail.php │ │ ├── DangerousGoodsShippersDeclarationDetail.php │ │ ├── DangerousGoodsSignatory.php │ │ ├── DateRange.php │ │ ├── DeleteShipmentRequest.php │ │ ├── DeleteTagRequest.php │ │ ├── DeliveryOnInvoiceAcceptanceDetail.php │ │ ├── DestinationControlDetail.php │ │ ├── DetentionDetail.php │ │ ├── Dimensions.php │ │ ├── DocTabContent.php │ │ ├── DocTabContentBarcoded.php │ │ ├── DocTabContentZone001.php │ │ ├── DocTabZoneSpecification.php │ │ ├── DocumentFormatOptionsRequested.php │ │ ├── DocumentGenerationDetail.php │ │ ├── DocumentRequirementsDetail.php │ │ ├── EMailDetail.php │ │ ├── EMailLabelDetail.php │ │ ├── EMailRecipient.php │ │ ├── EPaymentDetail.php │ │ ├── EdtCommodityTax.php │ │ ├── EdtExciseCondition.php │ │ ├── EdtTaxDetail.php │ │ ├── EmailOptionsRequested.php │ │ ├── EtdDetail.php │ │ ├── ExportDeclarationDetail.php │ │ ├── ExportDetail.php │ │ ├── ExpressFreightDetail.php │ │ ├── ExpressFreightDetailContact.php │ │ ├── ExtraLaborDetail.php │ │ ├── FlatbedTrailerDetail.php │ │ ├── FreightAddressLabelDetail.php │ │ ├── FreightBaseCharge.php │ │ ├── FreightBillOfLadingDetail.php │ │ ├── FreightGuaranteeDetail.php │ │ ├── FreightRateDetail.php │ │ ├── FreightRateNotation.php │ │ ├── FreightShipmentDetail.php │ │ ├── FreightShipmentLineItem.php │ │ ├── FreightSpecialServicePayment.php │ │ ├── GeneralAgencyAgreementDetail.php │ │ ├── HazardousCommodityContent.php │ │ ├── HazardousCommodityDescription.php │ │ ├── HazardousCommodityInnerReceptacleDetail.php │ │ ├── HazardousCommodityOptionDetail.php │ │ ├── HazardousCommodityPackagingDetail.php │ │ ├── HazardousCommodityPackingDetail.php │ │ ├── HazardousCommodityQuantityDetail.php │ │ ├── HoldAtLocationDetail.php │ │ ├── HomeDeliveryPremiumDetail.php │ │ ├── InternationalControlledExportDetail.php │ │ ├── InternationalTrafficInArmsRegulationsDetail.php │ │ ├── LabelSpecification.php │ │ ├── LiabilityCoverageDetail.php │ │ ├── LicenseOrPermitDetail.php │ │ ├── LinearMeasure.php │ │ ├── Localization.php │ │ ├── MarkingOrTaggingDetail.php │ │ ├── Measure.php │ │ ├── Message.php │ │ ├── MessageParameter.php │ │ ├── Money.php │ │ ├── NaftaCertificateOfOriginDetail.php │ │ ├── NaftaCommodityDetail.php │ │ ├── NaftaLowValueStatementDetail.php │ │ ├── NaftaProducer.php │ │ ├── NetExplosiveDetail.php │ │ ├── NonBusinessTimeDetail.php │ │ ├── Notification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── OfferingIdentifierDetail.php │ │ ├── Op900Detail.php │ │ ├── OperationalInstruction.php │ │ ├── PackageBarcodes.php │ │ ├── PackageOperationalDetail.php │ │ ├── PackageRateDetail.php │ │ ├── PackageRating.php │ │ ├── PackageSpecialServicesRequested.php │ │ ├── PackagingDescription.php │ │ ├── PalletShrinkwrapDetail.php │ │ ├── PalletsProvidedDetail.php │ │ ├── ParsedContact.php │ │ ├── ParsedContactAndAddress.php │ │ ├── ParsedPersonName.php │ │ ├── Party.php │ │ ├── Payment.php │ │ ├── Payor.php │ │ ├── PendingShipmentAccessDetail.php │ │ ├── PendingShipmentAccessorDetail.php │ │ ├── PendingShipmentDetail.php │ │ ├── PendingShipmentProcessingOptionsRequested.php │ │ ├── PickupDetail.php │ │ ├── PrintedReference.php │ │ ├── PriorityAlertDetail.php │ │ ├── ProcessShipmentReply.php │ │ ├── ProcessShipmentRequest.php │ │ ├── ProcessTagReply.php │ │ ├── ProcessTagRequest.php │ │ ├── ProductName.php │ │ ├── RadioactivityDetail.php │ │ ├── RadionuclideActivity.php │ │ ├── RadionuclideDetail.php │ │ ├── RateDiscount.php │ │ ├── Rebate.php │ │ ├── RecipientCustomsId.php │ │ ├── RecommendedDocumentSpecification.php │ │ ├── RegulatoryAdvisoryDetail.php │ │ ├── RegulatoryLabelContentDetail.php │ │ ├── RegulatoryProhibition.php │ │ ├── RegulatoryWaiver.php │ │ ├── RequestedPackageLineItem.php │ │ ├── RequestedShipment.php │ │ ├── ReturnAssociationDetail.php │ │ ├── ReturnEMailDetail.php │ │ ├── ReturnInstructionsDetail.php │ │ ├── ReturnShipmentDetail.php │ │ ├── Rma.php │ │ ├── ServiceDescription.php │ │ ├── ShipmentAdvisoryDetail.php │ │ ├── ShipmentAssemblyDetail.php │ │ ├── ShipmentAuthorizationDetail.php │ │ ├── ShipmentConfigurationData.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentLegRateDetail.php │ │ ├── ShipmentManifestDetail.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── ShipmentOperationalDetail.php │ │ ├── ShipmentProcessingOptionsRequested.php │ │ ├── ShipmentRateDetail.php │ │ ├── ShipmentRating.php │ │ ├── ShipmentReply.php │ │ ├── ShipmentSpecialServicesRequested.php │ │ ├── ShipmentVariationOptionDetail.php │ │ ├── ShipperConveyanceDetail.php │ │ ├── ShippingDocument.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentFormat.php │ │ ├── ShippingDocumentPart.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentSpecification.php │ │ ├── ShippingDocumentStorageDetail.php │ │ ├── SignatureOptionDetail.php │ │ ├── SmartPostShipmentDetail.php │ │ ├── SmartPostShipmentProcessingOptionsRequested.php │ │ ├── SortAndSegregateDetail.php │ │ ├── SpecialEquipmentDetail.php │ │ ├── SpecialEquipmentLineItem.php │ │ ├── SpecialServiceDescription.php │ │ ├── StorageDetail.php │ │ ├── StringBarcode.php │ │ ├── Surcharge.php │ │ ├── Tax.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── UploadDocumentReferenceDetail.php │ │ ├── UserDetail.php │ │ ├── UsmcaCertificationOfOriginDetail.php │ │ ├── UsmcaCommercialInvoiceCertificationOfOriginDetail.php │ │ ├── UsmcaCommodityDetail.php │ │ ├── ValidateShipmentRequest.php │ │ ├── ValidatedHazardousCommodityContent.php │ │ ├── ValidatedHazardousCommodityDescription.php │ │ ├── ValidatedHazardousContainer.php │ │ ├── VariableHandlingChargeDetail.php │ │ ├── VariableHandlingCharges.php │ │ ├── VersionId.php │ │ ├── Volume.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ ├── WeighingDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── AccessorRoleType.php │ │ ├── AdditionalLabelsType.php │ │ ├── AlcoholRecipientType.php │ │ ├── AncillaryFeeAndTaxType.php │ │ ├── AssociatedAccountNumberType.php │ │ ├── AssociatedShipmentType.php │ │ ├── AutoConfigurationType.php │ │ ├── B13AFilingOptionType.php │ │ ├── BarcodeSymbologyType.php │ │ ├── BatteryMaterialType.php │ │ ├── BatteryPackingType.php │ │ ├── BatteryRegulatorySubType.php │ │ ├── BinaryBarcodeType.php │ │ ├── BrokerType.php │ │ ├── CarrierCodeType.php │ │ ├── ChargeBasisLevelType.php │ │ ├── ClearanceBrokerageType.php │ │ ├── CodAddTransportationChargeBasisType.php │ │ ├── CodAdjustmentType.php │ │ ├── CodCollectionType.php │ │ ├── CodReturnReferenceIndicatorType.php │ │ ├── CommodityPurposeType.php │ │ ├── CompletedEtdType.php │ │ ├── CreditCardAuthorizationType.php │ │ ├── CreditCardTransactionAttributeType.php │ │ ├── CreditCardType.php │ │ ├── CustomDeliveryWindowType.php │ │ ├── CustomLabelCoordinateUnits.php │ │ ├── CustomRatingOptionType.php │ │ ├── CustomerImageUsageType.php │ │ ├── CustomerReferenceType.php │ │ ├── CustomerSpecifiedLabelGenerationOptionType.php │ │ ├── CustomsDeclarationStatementType.php │ │ ├── CustomsOptionType.php │ │ ├── CustomsRoleType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DangerousGoodsPackingOptionType.php │ │ ├── DayOfWeekType.php │ │ ├── DeletionControlType.php │ │ ├── DestinationControlStatementType.php │ │ ├── DocTabContentType.php │ │ ├── DocTabZoneJustificationType.php │ │ ├── DocumentFormatOptionType.php │ │ ├── DropoffType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EdtRequestType.php │ │ ├── EdtTaxType.php │ │ ├── EmailOptionType.php │ │ ├── EnterpriseDocumentType.php │ │ ├── ErrorLabelBehaviorType.php │ │ ├── EtdAttributeType.php │ │ ├── EtdConfirmationType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExLocationType.php │ │ ├── FlatbedTrailerOption.php │ │ ├── FreightBaseChargeCalculationType.php │ │ ├── FreightChargeBasisType.php │ │ ├── FreightClassType.php │ │ ├── FreightCollectTermsType.php │ │ ├── FreightGuaranteeType.php │ │ ├── FreightOnValueType.php │ │ ├── FreightRateQuoteType.php │ │ ├── FreightShipmentRoleType.php │ │ ├── GroundDeliveryEligibilityType.php │ │ ├── HazardousCommodityAttributeType.php │ │ ├── HazardousCommodityDescriptionProcessingOptionType.php │ │ ├── HazardousCommodityLabelTextOptionType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityPackingGroupType.php │ │ ├── HazardousCommodityQuantityType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── HazardousContainerPackingType.php │ │ ├── HomeDeliveryPremiumType.php │ │ ├── ImageId.php │ │ ├── InternalImageType.php │ │ ├── InternationalControlledExportType.php │ │ ├── InternationalDocumentContentType.php │ │ ├── LabelFormatType.php │ │ ├── LabelMaskableDataType.php │ │ ├── LabelOrderType.php │ │ ├── LabelPrintingOrientationType.php │ │ ├── LabelRotationType.php │ │ ├── LabelStockType.php │ │ ├── LiabilityCoverageType.php │ │ ├── LinearUnits.php │ │ ├── MinimumChargeType.php │ │ ├── NaftaImporterSpecificationType.php │ │ ├── NaftaNetCostMethodCode.php │ │ ├── NaftaPreferenceCriterionCode.php │ │ ├── NaftaProducerDeterminationCode.php │ │ ├── NaftaProducerSpecificationType.php │ │ ├── NetExplosiveClassificationType.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── OversizeClassType.php │ │ ├── PackageSpecialServiceType.php │ │ ├── PackagingType.php │ │ ├── PageQuadrantType.php │ │ ├── PaymentType.php │ │ ├── PendingShipmentProcessingOptionType.php │ │ ├── PendingShipmentType.php │ │ ├── PhysicalFormType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PickupRequestSourceType.php │ │ ├── PickupRequestType.php │ │ ├── PricingCodeType.php │ │ ├── PrintedReferenceType.php │ │ ├── PriorityAlertEnhancementType.php │ │ ├── ProhibitionSourceType.php │ │ ├── ProhibitionStatusType.php │ │ ├── ProhibitionType.php │ │ ├── PurposeOfShipmentType.php │ │ ├── RadioactiveContainerClassType.php │ │ ├── RadioactiveLabelType.php │ │ ├── RadioactivityUnitOfMeasure.php │ │ ├── RateDimensionalDivisorType.php │ │ ├── RateDiscountType.php │ │ ├── RateElementBasisType.php │ │ ├── RateRequestType.php │ │ ├── RateTypeBasisType.php │ │ ├── RatedWeightMethod.php │ │ ├── RebateType.php │ │ ├── RecipientCustomsIdType.php │ │ ├── RecommendedDocumentType.php │ │ ├── RegulatoryControlType.php │ │ ├── RegulatoryLabelType.php │ │ ├── RelativeVerticalPositionType.php │ │ ├── RequestedShippingDocumentType.php │ │ ├── RequiredDocumentType.php │ │ ├── RequirementType.php │ │ ├── ReturnEMailAllowedSpecialServiceType.php │ │ ├── ReturnType.php │ │ ├── ReturnedRateType.php │ │ ├── ReturnedShippingDocumentType.php │ │ ├── RotationType.php │ │ ├── SecondaryBarcodeType.php │ │ ├── ServiceType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── ShipmentProcessingOptionType.php │ │ ├── ShipmentRuleType.php │ │ ├── ShipmentSpecialServiceType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentNamingType.php │ │ ├── ShippingDocumentStockType.php │ │ ├── ShippingDocumentStorageDetailType.php │ │ ├── SignatureOptionType.php │ │ ├── SmartPostAncillaryEndorsementType.php │ │ ├── SmartPostIndiciaType.php │ │ ├── SmartPostShipmentProcessingOptionType.php │ │ ├── SmartPostShipmentSpecialServiceType.php │ │ ├── SpecialEquipmentType.php │ │ ├── SpecialRatingAppliedType.php │ │ ├── StringBarcodeType.php │ │ ├── SurchargeLevelType.php │ │ ├── SurchargeType.php │ │ ├── TaxType.php │ │ ├── TaxesOrMiscellaneousChargeType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TransactionSourceFormat.php │ │ ├── TransitTimeType.php │ │ ├── UploadDocumentIdProducer.php │ │ ├── UploadDocumentProducerType.php │ │ ├── UploadDocumentType.php │ │ ├── UsmcaCertifierSpecificationType.php │ │ ├── UsmcaImporterSpecificationType.php │ │ ├── UsmcaOriginCriterionCode.php │ │ ├── UsmcaProducerSpecificationType.php │ │ ├── VolumeUnits.php │ │ ├── WebServiceEnvironment.php │ │ ├── WeighingScaleType.php │ │ ├── WeightSource.php │ │ └── WeightUnits.php │ ├── TrackService │ ├── ComplexType │ │ ├── Address.php │ │ ├── AppointmentDetail.php │ │ ├── AppointmentTimeDetail.php │ │ ├── AvailableImagesDetail.php │ │ ├── ClientDetail.php │ │ ├── Commodity.php │ │ ├── CompletedTrackDetail.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── ContentRecord.php │ │ ├── CustomerExceptionRequestDetail.php │ │ ├── CustomsOptionDetail.php │ │ ├── DateRange.php │ │ ├── DeliveryOptionEligibilityDetail.php │ │ ├── Dimensions.php │ │ ├── Distance.php │ │ ├── DocumentPart.php │ │ ├── EMailDetail.php │ │ ├── EPaymentDetail.php │ │ ├── EdtExciseCondition.php │ │ ├── FaxDetail.php │ │ ├── GetTrackingDocumentsReply.php │ │ ├── GetTrackingDocumentsRequest.php │ │ ├── LocalTimeRange.php │ │ ├── Localization.php │ │ ├── Measure.php │ │ ├── Money.php │ │ ├── NaftaCommodityDetail.php │ │ ├── Notification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── PagingDetail.php │ │ ├── PieceCountVerificationDetail.php │ │ ├── SendNotificationsReply.php │ │ ├── SendNotificationsRequest.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── SignatureImageDetail.php │ │ ├── SpecialInstructionStatusDetail.php │ │ ├── StringBarcode.php │ │ ├── TrackAdvanceNotificationDetail.php │ │ ├── TrackChargeDetail.php │ │ ├── TrackDelayDetail.php │ │ ├── TrackDetail.php │ │ ├── TrackEvent.php │ │ ├── TrackInformationNoteDetail.php │ │ ├── TrackNotificationPackage.php │ │ ├── TrackNotificationRecipientDetail.php │ │ ├── TrackOtherIdentifierDetail.php │ │ ├── TrackPackageIdentifier.php │ │ ├── TrackPackagingDescriptionDetail.php │ │ ├── TrackPayment.php │ │ ├── TrackReconciliation.php │ │ ├── TrackReply.php │ │ ├── TrackRequest.php │ │ ├── TrackReturnDetail.php │ │ ├── TrackSelectionDetail.php │ │ ├── TrackServiceDescriptionDetail.php │ │ ├── TrackSpecialHandling.php │ │ ├── TrackSpecialInstruction.php │ │ ├── TrackSplitShipmentPart.php │ │ ├── TrackStatusAncillaryDetail.php │ │ ├── TrackStatusDetail.php │ │ ├── TrackingBillOfLadingDocumentDetail.php │ │ ├── TrackingDateOrTimestamp.php │ │ ├── TrackingDocument.php │ │ ├── TrackingDocumentDispositionDetail.php │ │ ├── TrackingDocumentEmailDetail.php │ │ ├── TrackingDocumentFormat.php │ │ ├── TrackingDocumentSpecification.php │ │ ├── TrackingFreightBillingDocumentDetail.php │ │ ├── TrackingSignatureProofOfDeliveryDetail.php │ │ ├── TransactionDetail.php │ │ ├── UserDetail.php │ │ ├── UsmcaCommodityDetail.php │ │ ├── VersionId.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── AppointmentWindowType.php │ │ ├── ArrivalLocationType.php │ │ ├── AvailableImageType.php │ │ ├── BarcodeEntryType.php │ │ ├── CarrierCodeType.php │ │ ├── ClearanceBrokerageType.php │ │ ├── CommodityPurposeType.php │ │ ├── CustomsOptionType.php │ │ ├── DeliveryOptionType.php │ │ ├── DistanceUnits.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EligibilityType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExLocationType.php │ │ ├── ImageSizeType.php │ │ ├── LinearUnits.php │ │ ├── NaftaNetCostMethodCode.php │ │ ├── NaftaPreferenceCriterionCode.php │ │ ├── NaftaProducerDeterminationCode.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── OfficeOrderDeliveryMethodType.php │ │ ├── OperatingCompanyType.php │ │ ├── PackagingType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PieceCountLocationType.php │ │ ├── ServiceDelayType.php │ │ ├── ServiceType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── SpecialInstructionsStatusCode.php │ │ ├── StringBarcodeType.php │ │ ├── TrackAdvanceNotificationStatusType.php │ │ ├── TrackChargeDetailType.php │ │ ├── TrackChargesPaymentClassificationType.php │ │ ├── TrackDelayType.php │ │ ├── TrackDeliveryLocationType.php │ │ ├── TrackDeliveryOptionType.php │ │ ├── TrackDetailAttributeType.php │ │ ├── TrackIdentifierType.php │ │ ├── TrackPaymentType.php │ │ ├── TrackPossessionStatusType.php │ │ ├── TrackRequestProcessingOptionType.php │ │ ├── TrackReturnLabelType.php │ │ ├── TrackReturnMovementStatusType.php │ │ ├── TrackSpecialHandlingType.php │ │ ├── TrackSubDelayType.php │ │ ├── TrackingDateOrTimestampType.php │ │ ├── TrackingDocumentDispositionType.php │ │ ├── TrackingDocumentGroupingType.php │ │ ├── TrackingDocumentImageType.php │ │ ├── TrackingDocumentType.php │ │ ├── UsmcaOriginCriterionCode.php │ │ └── WeightUnits.php │ ├── UploadDocumentService │ ├── ComplexType │ │ ├── AdditionalLabelsDetail.php │ │ ├── Address.php │ │ ├── AdrLicenseDetail.php │ │ ├── AlcoholDetail.php │ │ ├── AncillaryFeeAndTax.php │ │ ├── AssociatedAccount.php │ │ ├── AssociatedFreightLineItemDetail.php │ │ ├── AssociatedShipmentDetail.php │ │ ├── AssociatedTrackingId.php │ │ ├── BatteryClassificationDetail.php │ │ ├── BinaryBarcode.php │ │ ├── BrokerDetail.php │ │ ├── CertificateOfOriginDetail.php │ │ ├── ClientDetail.php │ │ ├── CodAddTransportationChargesDetail.php │ │ ├── CodDetail.php │ │ ├── CodReturnPackageDetail.php │ │ ├── CommercialInvoice.php │ │ ├── CommercialInvoiceDetail.php │ │ ├── Commodity.php │ │ ├── CompletedCodDetail.php │ │ ├── CompletedEtdDetail.php │ │ ├── CompletedHazardousPackageDetail.php │ │ ├── CompletedHazardousShipmentDetail.php │ │ ├── CompletedHazardousSummaryDetail.php │ │ ├── CompletedHoldAtLocationDetail.php │ │ ├── CompletedPackageDetail.php │ │ ├── CompletedShipmentConsolidationDetail.php │ │ ├── CompletedShipmentDetail.php │ │ ├── CompletedSmartPostDetail.php │ │ ├── CompletedTagDetail.php │ │ ├── CompletedTransborderDistributionDetail.php │ │ ├── ConfigurableLabelReferenceEntry.php │ │ ├── ConsolidationSpecialServicesRequested.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── ContentRecord.php │ │ ├── CreditCard.php │ │ ├── CreditCardTransactionAttributesDetail.php │ │ ├── CreditCardTransactionDetail.php │ │ ├── CreditFraudDetectionDetail.php │ │ ├── CurrencyExchangeRate.php │ │ ├── CustomDeliveryWindowDetail.php │ │ ├── CustomDiscountExclusionDetail.php │ │ ├── CustomDocumentDetail.php │ │ ├── CustomLabelBarcodeEntry.php │ │ ├── CustomLabelBoxEntry.php │ │ ├── CustomLabelDetail.php │ │ ├── CustomLabelGraphicEntry.php │ │ ├── CustomLabelPosition.php │ │ ├── CustomLabelTextBoxEntry.php │ │ ├── CustomLabelTextEntry.php │ │ ├── CustomRatingOptionDetail.php │ │ ├── CustomTransitTimeDetail.php │ │ ├── CustomerImageUsage.php │ │ ├── CustomerProvidedImage.php │ │ ├── CustomerReference.php │ │ ├── CustomerSpecifiedLabelDetail.php │ │ ├── CustomsClearanceDetail.php │ │ ├── CustomsDeclarationStatementDetail.php │ │ ├── CustomsOptionDetail.php │ │ ├── DangerousGoodsContainer.php │ │ ├── DangerousGoodsDetail.php │ │ ├── DangerousGoodsShippersDeclarationDetail.php │ │ ├── DangerousGoodsSignatory.php │ │ ├── DateRange.php │ │ ├── DeletionDetail.php │ │ ├── DeliveryOnInvoiceAcceptanceDetail.php │ │ ├── DestinationControlDetail.php │ │ ├── DetentionDetail.php │ │ ├── Dimensions.php │ │ ├── DocTabContent.php │ │ ├── DocTabContentBarcoded.php │ │ ├── DocTabContentZone001.php │ │ ├── DocTabZoneSpecification.php │ │ ├── DocumentFormatOptionsRequested.php │ │ ├── DocumentGenerationDetail.php │ │ ├── DocumentLineItem.php │ │ ├── DocumentRequirementsDetail.php │ │ ├── EMailDetail.php │ │ ├── EMailLabelDetail.php │ │ ├── EMailRecipient.php │ │ ├── EPaymentDetail.php │ │ ├── EdtCommodityTax.php │ │ ├── EdtExciseCondition.php │ │ ├── EdtTaxDetail.php │ │ ├── EmailOptionsRequested.php │ │ ├── EtdDetail.php │ │ ├── ExportDeclarationDetail.php │ │ ├── ExportDetail.php │ │ ├── ExpressFreightDetail.php │ │ ├── ExpressFreightDetailContact.php │ │ ├── ExtraLaborDetail.php │ │ ├── FaxDetail.php │ │ ├── FlatbedTrailerDetail.php │ │ ├── FreightAddressLabelDetail.php │ │ ├── FreightBaseCharge.php │ │ ├── FreightBillOfLadingDetail.php │ │ ├── FreightGuaranteeDetail.php │ │ ├── FreightRateDetail.php │ │ ├── FreightRateNotation.php │ │ ├── FreightShipmentDetail.php │ │ ├── FreightShipmentLineItem.php │ │ ├── FreightSpecialServicePayment.php │ │ ├── GeneralAgencyAgreementDetail.php │ │ ├── HazardousCommodityContent.php │ │ ├── HazardousCommodityDescription.php │ │ ├── HazardousCommodityInnerReceptacleDetail.php │ │ ├── HazardousCommodityOptionDetail.php │ │ ├── HazardousCommodityPackagingDetail.php │ │ ├── HazardousCommodityPackingDetail.php │ │ ├── HazardousCommodityQuantityDetail.php │ │ ├── HoldAtLocationDetail.php │ │ ├── HomeDeliveryPremiumDetail.php │ │ ├── ImageReferenceDetail.php │ │ ├── ImageUploadStatusDetail.php │ │ ├── InternationalControlledExportDetail.php │ │ ├── InternationalDistributionSummaryDetail.php │ │ ├── InternationalTrafficInArmsRegulationsDetail.php │ │ ├── KeyValueDetail.php │ │ ├── LabelSpecification.php │ │ ├── LabelSpecificationProcessingOptionsRequested.php │ │ ├── LiabilityCoverageDetail.php │ │ ├── LicenseOrPermitDetail.php │ │ ├── LinearMeasure.php │ │ ├── Localization.php │ │ ├── MarkingOrTaggingDetail.php │ │ ├── Measure.php │ │ ├── Money.php │ │ ├── NetExplosiveDetail.php │ │ ├── NonBusinessTimeDetail.php │ │ ├── Notification.php │ │ ├── NotificationContentSpecification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── OfferingIdentifierDetail.php │ │ ├── Op900Detail.php │ │ ├── OperationalInstruction.php │ │ ├── PackageBarcodes.php │ │ ├── PackageOperationalDetail.php │ │ ├── PackageRateDetail.php │ │ ├── PackageRating.php │ │ ├── PackageSpecialHandlingDetail.php │ │ ├── PackageSpecialServicesRequested.php │ │ ├── PackageStatusDetail.php │ │ ├── PackagingDescription.php │ │ ├── PalletShrinkwrapDetail.php │ │ ├── PalletsProvidedDetail.php │ │ ├── ParsedContact.php │ │ ├── ParsedContactAndAddress.php │ │ ├── ParsedPersonName.php │ │ ├── Party.php │ │ ├── Payment.php │ │ ├── Payor.php │ │ ├── PendingShipmentAccessDetail.php │ │ ├── PendingShipmentAccessorDetail.php │ │ ├── PendingShipmentDetail.php │ │ ├── PendingShipmentProcessingOptionsRequested.php │ │ ├── PickupDetail.php │ │ ├── PostShipmentUploadDetail.php │ │ ├── PrintedReference.php │ │ ├── PriorityAlertDetail.php │ │ ├── ProductName.php │ │ ├── RadioactivityDetail.php │ │ ├── RadionuclideActivity.php │ │ ├── RadionuclideDetail.php │ │ ├── RateDiscount.php │ │ ├── Rebate.php │ │ ├── RecipientCustomsId.php │ │ ├── RecommendedDocumentSpecification.php │ │ ├── RegulatoryLabelContentDetail.php │ │ ├── RequestedDistributionLocation.php │ │ ├── RequestedPackageLineItem.php │ │ ├── RequestedShipment.php │ │ ├── ReturnAssociationDetail.php │ │ ├── ReturnEMailDetail.php │ │ ├── ReturnInstructionsDetail.php │ │ ├── ReturnShipmentDetail.php │ │ ├── Rma.php │ │ ├── ServiceDescription.php │ │ ├── ShipmentAssemblyDetail.php │ │ ├── ShipmentAuthorizationDetail.php │ │ ├── ShipmentConfigurationData.php │ │ ├── ShipmentConsolidationDetail.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentInclusionSpecification.php │ │ ├── ShipmentInternationalDistributionDetail.php │ │ ├── ShipmentLegRateDetail.php │ │ ├── ShipmentManifestDetail.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── ShipmentOperationalDetail.php │ │ ├── ShipmentProcessingOptionsRequested.php │ │ ├── ShipmentRateDetail.php │ │ ├── ShipmentRating.php │ │ ├── ShipmentSpecialServicesRequested.php │ │ ├── ShipmentTransborderDistributionDetail.php │ │ ├── ShipmentVariationOptionDetail.php │ │ ├── ShipperConveyanceDetail.php │ │ ├── ShippingDocument.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentFormat.php │ │ ├── ShippingDocumentPart.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentSpecification.php │ │ ├── ShippingDocumentStorageDetail.php │ │ ├── SignatureOptionDetail.php │ │ ├── SmartPostShipmentDetail.php │ │ ├── SmartPostShipmentProcessingOptionsRequested.php │ │ ├── SmsDetail.php │ │ ├── SortAndSegregateDetail.php │ │ ├── SpecialEquipmentDetail.php │ │ ├── SpecialEquipmentLineItem.php │ │ ├── SpecialServiceDescription.php │ │ ├── SplitPaymentDetail.php │ │ ├── SplitPaymentSpecification.php │ │ ├── StorageDetail.php │ │ ├── StringBarcode.php │ │ ├── Surcharge.php │ │ ├── Tax.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── TransborderDistributionLtlDetail.php │ │ ├── TransborderDistributionSpecialServicesRequested.php │ │ ├── TransborderDistributionSummaryDetail.php │ │ ├── UploadDocumentDetail.php │ │ ├── UploadDocumentReferenceDetail.php │ │ ├── UploadDocumentStatusDetail.php │ │ ├── UploadDocumentsProcessingOptionsRequested.php │ │ ├── UploadDocumentsReply.php │ │ ├── UploadDocumentsRequest.php │ │ ├── UploadDocumentsWithShipmentDataReply.php │ │ ├── UploadDocumentsWithShipmentDataRequest.php │ │ ├── UploadImageDetail.php │ │ ├── UploadImagesReply.php │ │ ├── UploadImagesRequest.php │ │ ├── UsmcaCertificationOfOriginDetail.php │ │ ├── UsmcaCommercialInvoiceCertificationOfOriginDetail.php │ │ ├── UsmcaCommodityDetail.php │ │ ├── ValidatedHazardousCommodityContent.php │ │ ├── ValidatedHazardousCommodityDescription.php │ │ ├── ValidatedHazardousContainer.php │ │ ├── VariableHandlingChargeDetail.php │ │ ├── VariableHandlingCharges.php │ │ ├── VersionId.php │ │ ├── Volume.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ ├── WeighingDetail.php │ │ └── Weight.php │ ├── Request.php │ └── SimpleType │ │ ├── AccessorRoleType.php │ │ ├── AdditionalLabelsType.php │ │ ├── AlcoholRecipientType.php │ │ ├── AncillaryFeeAndTaxType.php │ │ ├── AssociatedAccountNumberType.php │ │ ├── AssociatedShipmentType.php │ │ ├── AssociatedTrackingIdType.php │ │ ├── B13AFilingOptionType.php │ │ ├── BarcodeSymbologyType.php │ │ ├── BatteryMaterialType.php │ │ ├── BatteryPackingType.php │ │ ├── BatteryRegulatorySubType.php │ │ ├── BinaryBarcodeType.php │ │ ├── BrokerType.php │ │ ├── CarrierCodeType.php │ │ ├── ChargeBasisLevelType.php │ │ ├── ClearanceBrokerageType.php │ │ ├── CodAddTransportationChargeBasisType.php │ │ ├── CodAdjustmentType.php │ │ ├── CodCollectionType.php │ │ ├── CodReturnReferenceIndicatorType.php │ │ ├── CommodityPurposeType.php │ │ ├── CompletedEtdType.php │ │ ├── ConsolidationShipmentRoleType.php │ │ ├── ConsolidationSpecialServiceType.php │ │ ├── ConsolidationType.php │ │ ├── CreditCardAuthorizationType.php │ │ ├── CreditCardSettlementScheduleType.php │ │ ├── CreditCardTransactionAttributeType.php │ │ ├── CreditCardType.php │ │ ├── CustomDeliveryWindowType.php │ │ ├── CustomLabelCoordinateUnits.php │ │ ├── CustomRatingOptionType.php │ │ ├── CustomerImageUsageType.php │ │ ├── CustomerReferenceType.php │ │ ├── CustomerSpecifiedLabelGenerationOptionType.php │ │ ├── CustomsDeclarationStatementType.php │ │ ├── CustomsOptionType.php │ │ ├── DamageStatusType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DangerousGoodsDescriptorType.php │ │ ├── DangerousGoodsPackingOptionType.php │ │ ├── DayOfWeekType.php │ │ ├── DeleteRecordedShipmentRequestServiceLevel.php │ │ ├── DestinationControlStatementType.php │ │ ├── DistributionClearanceType.php │ │ ├── DocTabContentType.php │ │ ├── DocTabZoneJustificationType.php │ │ ├── DocumentFormatOptionType.php │ │ ├── DocumentUsageType.php │ │ ├── DropoffType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EdtRequestType.php │ │ ├── EdtTaxType.php │ │ ├── EmailOptionType.php │ │ ├── EnterpriseDocumentType.php │ │ ├── ErrorLabelBehaviorType.php │ │ ├── EtdAttributeType.php │ │ ├── EtdConfirmationType.php │ │ ├── FedExDistributionLocationType.php │ │ ├── FedExLocationType.php │ │ ├── FlatbedTrailerOption.php │ │ ├── FreightBaseChargeCalculationType.php │ │ ├── FreightChargeBasisType.php │ │ ├── FreightClassType.php │ │ ├── FreightCollectTermsType.php │ │ ├── FreightGuaranteeType.php │ │ ├── FreightOnValueType.php │ │ ├── FreightRateQuoteType.php │ │ ├── FreightShipmentRoleType.php │ │ ├── GroundDeliveryEligibilityType.php │ │ ├── HazardousCommodityAttributeType.php │ │ ├── HazardousCommodityDescriptionProcessingOptionType.php │ │ ├── HazardousCommodityLabelTextOptionType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityPackingGroupType.php │ │ ├── HazardousCommodityQuantityType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── HazardousContainerPackingType.php │ │ ├── HomeDeliveryPremiumType.php │ │ ├── ImageId.php │ │ ├── InspectionStatusType.php │ │ ├── InternalImageType.php │ │ ├── InternationalControlledExportType.php │ │ ├── InternationalDocumentContentType.php │ │ ├── LabelFormatType.php │ │ ├── LabelMaskableDataType.php │ │ ├── LabelOrderType.php │ │ ├── LabelPrintingOrientationType.php │ │ ├── LabelRotationType.php │ │ ├── LabelSpecificationProcessingOptionType.php │ │ ├── LabelStockType.php │ │ ├── LiabilityCoverageType.php │ │ ├── LinearUnits.php │ │ ├── MinimumChargeType.php │ │ ├── NetExplosiveClassificationType.php │ │ ├── NotificationContentType.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── OversizeClassType.php │ │ ├── PackageLineItemStatusType.php │ │ ├── PackagePackedByType.php │ │ ├── PageQuadrantType.php │ │ ├── PaymentType.php │ │ ├── PendingShipmentProcessingOptionType.php │ │ ├── PendingShipmentType.php │ │ ├── PhysicalFormType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PickupRequestSourceType.php │ │ ├── PickupRequestType.php │ │ ├── PricingCodeType.php │ │ ├── PrintedReferenceType.php │ │ ├── PriorityAlertEnhancementType.php │ │ ├── PurposeOfShipmentType.php │ │ ├── RadioactiveContainerClassType.php │ │ ├── RadioactiveLabelType.php │ │ ├── RadioactivityUnitOfMeasure.php │ │ ├── RateDimensionalDivisorType.php │ │ ├── RateDiscountType.php │ │ ├── RateElementBasisType.php │ │ ├── RateLevelBasisType.php │ │ ├── RateRequestType.php │ │ ├── RateTypeBasisType.php │ │ ├── RatedWeightMethod.php │ │ ├── RebateType.php │ │ ├── RecipientCustomsIdType.php │ │ ├── RecommendedDocumentType.php │ │ ├── RegulatoryControlType.php │ │ ├── RegulatoryLabelType.php │ │ ├── RelativeVerticalPositionType.php │ │ ├── RequestedShippingDocumentType.php │ │ ├── RequiredDocumentType.php │ │ ├── RequirementType.php │ │ ├── ReturnEMailAllowedSpecialServiceType.php │ │ ├── ReturnType.php │ │ ├── ReturnedRateType.php │ │ ├── ReturnedShippingDocumentType.php │ │ ├── RotationType.php │ │ ├── SecondaryBarcodeType.php │ │ ├── ServiceCategoryType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── ShipmentOnlyFieldsType.php │ │ ├── ShipmentProcessingOptionType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentNamingType.php │ │ ├── ShippingDocumentStockType.php │ │ ├── ShippingDocumentStorageDetailType.php │ │ ├── SignatureOptionType.php │ │ ├── SmartPostAncillaryEndorsementType.php │ │ ├── SmartPostIndiciaType.php │ │ ├── SmartPostShipmentProcessingOptionType.php │ │ ├── SmartPostShipmentSpecialServiceType.php │ │ ├── SpecialEquipmentType.php │ │ ├── SpecialRatingAppliedType.php │ │ ├── SplitPaymentType.php │ │ ├── StringBarcodeType.php │ │ ├── SurchargeLevelType.php │ │ ├── SurchargeType.php │ │ ├── TaxType.php │ │ ├── TaxesOrMiscellaneousChargeType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TransborderDistributionSpecialServiceType.php │ │ ├── TransitTimeType.php │ │ ├── UploadDocumentIdProducer.php │ │ ├── UploadDocumentProducerType.php │ │ ├── UploadDocumentStatusInfoType.php │ │ ├── UploadDocumentStatusType.php │ │ ├── UploadDocumentType.php │ │ ├── UploadDocumentsProcessingOptionType.php │ │ ├── UploadImageStatusInfoType.php │ │ ├── UploadImageStatusType.php │ │ ├── UsmcaCertifierSpecificationType.php │ │ ├── UsmcaImporterSpecificationType.php │ │ ├── UsmcaOriginCriterionCode.php │ │ ├── UsmcaProducerSpecificationType.php │ │ ├── VolumeUnits.php │ │ ├── WeighingScaleType.php │ │ ├── WeightSource.php │ │ └── WeightUnits.php │ ├── ValidationAvailabilityAndCommitmentService │ ├── ComplexType │ │ ├── AccountAliasDetail.php │ │ ├── AccountGroupDetail.php │ │ ├── AccountGroupMasterAccountDetail.php │ │ ├── AccountGroupMembershipDetail.php │ │ ├── AdditionalLabelsDetail.php │ │ ├── Address.php │ │ ├── AddressAncillaryDetail.php │ │ ├── AirCargoDetail.php │ │ ├── AlcoholDetail.php │ │ ├── AssociatedAccount.php │ │ ├── AssociatedCompanyAccount.php │ │ ├── AssociatedFreightLineItemDetail.php │ │ ├── AssociatedTrackingId.php │ │ ├── AuthorizedAddress.php │ │ ├── BankAccountDetail.php │ │ ├── BankDetail.php │ │ ├── BatteryClassificationDetail.php │ │ ├── BrokerDetail.php │ │ ├── CertificateOfOriginDetail.php │ │ ├── ClientDetail.php │ │ ├── CodAddTransportationChargesDetail.php │ │ ├── CodDetail.php │ │ ├── CommercialInvoice.php │ │ ├── CommercialInvoiceDetail.php │ │ ├── Commodity.php │ │ ├── ConfigurableLabelReferenceEntry.php │ │ ├── ConsolidationSpecialServicesRequested.php │ │ ├── Contact.php │ │ ├── ContactAndAddress.php │ │ ├── ContentRecord.php │ │ ├── CreditCard.php │ │ ├── CreditCardTransactionAttributesDetail.php │ │ ├── CreditCardTransactionDetail.php │ │ ├── CreditFraudDetectionDetail.php │ │ ├── CustomDeliveryWindowDetail.php │ │ ├── CustomDiscountExclusionDetail.php │ │ ├── CustomDocumentDetail.php │ │ ├── CustomLabelBarcodeEntry.php │ │ ├── CustomLabelBoxEntry.php │ │ ├── CustomLabelDetail.php │ │ ├── CustomLabelGraphicEntry.php │ │ ├── CustomLabelPosition.php │ │ ├── CustomLabelTextBoxEntry.php │ │ ├── CustomLabelTextEntry.php │ │ ├── CustomRatingOptionDetail.php │ │ ├── CustomTransitTimeDetail.php │ │ ├── CustomerAccountFranchiseeDetail.php │ │ ├── CustomerCommunicationDetail.php │ │ ├── CustomerDiscountDetail.php │ │ ├── CustomerImageUsage.php │ │ ├── CustomerProfileArchiveDetail.php │ │ ├── CustomerProfileBankDetail.php │ │ ├── CustomerProfileVATDetail.php │ │ ├── CustomerReference.php │ │ ├── CustomerRevenueDetail.php │ │ ├── CustomerShippingEnablementDetail.php │ │ ├── CustomerShippingVolumeDetail.php │ │ ├── CustomerSpecifiedLabelDetail.php │ │ ├── CustomerSuppliesDetail.php │ │ ├── CustomsClearanceDetail.php │ │ ├── CustomsDeclarationStatementDetail.php │ │ ├── CustomsOptionDetail.php │ │ ├── DangerousGoodsContainer.php │ │ ├── DangerousGoodsDetail.php │ │ ├── DangerousGoodsShippersDeclarationDetail.php │ │ ├── DangerousGoodsSignatory.php │ │ ├── DateOrTimeRange.php │ │ ├── DateRange.php │ │ ├── DeletionDetail.php │ │ ├── DeliveryOnInvoiceAcceptanceDetail.php │ │ ├── DestinationControlDetail.php │ │ ├── DetentionDetail.php │ │ ├── Dimensions.php │ │ ├── DirectDebitDetail.php │ │ ├── DirectDebitMandateDetail.php │ │ ├── DocTabContent.php │ │ ├── DocTabContentBarcoded.php │ │ ├── DocTabContentZone001.php │ │ ├── DocTabZoneSpecification.php │ │ ├── DocumentFormatOptionsRequested.php │ │ ├── DocumentLineItem.php │ │ ├── EDIMasterDetail.php │ │ ├── EMailAddressDetail.php │ │ ├── EMailDetail.php │ │ ├── EMailLabelDetail.php │ │ ├── EMailRecipient.php │ │ ├── EPaymentDetail.php │ │ ├── EdtExciseCondition.php │ │ ├── EmailOptionsRequested.php │ │ ├── EnterpriseCustomer.php │ │ ├── EnterpriseCustomerDiscountDetail.php │ │ ├── EnterprisePrivilegeDetail.php │ │ ├── EnterpriseProfile.php │ │ ├── EtdDetail.php │ │ ├── ExportDeclarationDetail.php │ │ ├── ExportDetail.php │ │ ├── ExpressFreightDetail.php │ │ ├── ExpressFreightDetailContact.php │ │ ├── ExpressProfile.php │ │ ├── ExtraLaborDetail.php │ │ ├── FaxDetail.php │ │ ├── FedExEmployee.php │ │ ├── FlatbedTrailerDetail.php │ │ ├── FreightAccountDetail.php │ │ ├── FreightAddressLabelDetail.php │ │ ├── FreightBillOfLadingDetail.php │ │ ├── FreightGuaranteeDetail.php │ │ ├── FreightProfile.php │ │ ├── FreightShipmentDetail.php │ │ ├── FreightShipmentLineItem.php │ │ ├── FreightSpecialServicePayment.php │ │ ├── GeneralAgencyAgreementDetail.php │ │ ├── GeoPoliticalEntityDetail.php │ │ ├── GetAllServicesAndPackagingProcessingOptionsRequested.php │ │ ├── GetAllServicesAndPackagingReply.php │ │ ├── GetAllServicesAndPackagingRequest.php │ │ ├── GetAllSpecialServicesProcessingOptionsRequested.php │ │ ├── GetAllSpecialServicesReply.php │ │ ├── GetAllSpecialServicesRequest.php │ │ ├── GroundProfile.php │ │ ├── GroupReferenceDetail.php │ │ ├── HazardousCommodityContent.php │ │ ├── HazardousCommodityDescription.php │ │ ├── HazardousCommodityInnerReceptacleDetail.php │ │ ├── HazardousCommodityOptionDetail.php │ │ ├── HazardousCommodityPackagingDetail.php │ │ ├── HazardousCommodityPackingDetail.php │ │ ├── HazardousCommodityQuantityDetail.php │ │ ├── HoldAtLocationDetail.php │ │ ├── HomeDeliveryPremiumDetail.php │ │ ├── InterlineCustomerDetail.php │ │ ├── InternationalControlledExportDetail.php │ │ ├── InternationalDistributionSummaryDetail.php │ │ ├── InternationalTrafficInArmsRegulationsDetail.php │ │ ├── KeyValueDetail.php │ │ ├── LabelSpecification.php │ │ ├── LabelSpecificationProcessingOptionsRequested.php │ │ ├── LiabilityCoverageDetail.php │ │ ├── LinearMeasure.php │ │ ├── Localization.php │ │ ├── MarkingOrTaggingDetail.php │ │ ├── Measure.php │ │ ├── Money.php │ │ ├── NaftaCertificateOfOriginDetail.php │ │ ├── NaftaCommodityDetail.php │ │ ├── NaftaLowValueStatementDetail.php │ │ ├── NaftaProducer.php │ │ ├── NetExplosiveDetail.php │ │ ├── NonBusinessTimeDetail.php │ │ ├── Notification.php │ │ ├── NotificationContentSpecification.php │ │ ├── NotificationDetail.php │ │ ├── NotificationParameter.php │ │ ├── Op900Detail.php │ │ ├── PackageSpecialHandlingDetail.php │ │ ├── PackageSpecialServiceDescription.php │ │ ├── PackageSpecialServicesRequested.php │ │ ├── PackageStatusDetail.php │ │ ├── PackagingDescription.php │ │ ├── PalletShrinkwrapDetail.php │ │ ├── PalletsProvidedDetail.php │ │ ├── ParsedContact.php │ │ ├── ParsedContactAndAddress.php │ │ ├── ParsedPersonName.php │ │ ├── ParsedPhoneNumber.php │ │ ├── ParsedPhoneNumberDetail.php │ │ ├── Party.php │ │ ├── Payment.php │ │ ├── Payor.php │ │ ├── PendingShipmentDetail.php │ │ ├── PendingShipmentProcessingOptionsRequested.php │ │ ├── PickupDetail.php │ │ ├── PolicyGridManifest.php │ │ ├── PrintedReference.php │ │ ├── PriorityAlertDetail.php │ │ ├── ProductDetail.php │ │ ├── ProductName.php │ │ ├── ProfileContact.php │ │ ├── ProfileCreditStatusDetail.php │ │ ├── RadioactivityDetail.php │ │ ├── RadionuclideActivity.php │ │ ├── RadionuclideDetail.php │ │ ├── RecipientCustomsId.php │ │ ├── RecipientProfile.php │ │ ├── RecommendedDocumentSpecification.php │ │ ├── RegulatoryLabelContentDetail.php │ │ ├── RequestedDistributionLocation.php │ │ ├── RequestedPackageLineItem.php │ │ ├── RequestedShipment.php │ │ ├── RestrictionsAndPrivilegesPolicyDetail.php │ │ ├── ReturnAssociationDetail.php │ │ ├── ReturnEMailDetail.php │ │ ├── ReturnInstructionsDetail.php │ │ ├── ReturnShipmentDetail.php │ │ ├── Rma.php │ │ ├── ServiceAvailabilityOption.php │ │ ├── ServiceAvailabilityReply.php │ │ ├── ServiceAvailabilityRequest.php │ │ ├── ServiceDescription.php │ │ ├── ServiceSubOptionDetail.php │ │ ├── ServiceTypesByCarrierCodeDetail.php │ │ ├── ShipmentAssemblyDetail.php │ │ ├── ShipmentAuthorizationDetail.php │ │ ├── ShipmentConfigurationData.php │ │ ├── ShipmentConsolidationDetail.php │ │ ├── ShipmentDryIceDetail.php │ │ ├── ShipmentDryIceProcessingOptionsRequested.php │ │ ├── ShipmentEventNotificationDetail.php │ │ ├── ShipmentEventNotificationSpecification.php │ │ ├── ShipmentInclusionSpecification.php │ │ ├── ShipmentInternationalDistributionDetail.php │ │ ├── ShipmentManifestDetail.php │ │ ├── ShipmentNotificationFormatSpecification.php │ │ ├── ShipmentProcessingOptionsRequested.php │ │ ├── ShipmentSpecialServiceDescription.php │ │ ├── ShipmentSpecialServicesRequested.php │ │ ├── ShipmentTransborderDistributionDetail.php │ │ ├── ShipmentVariationOptionDetail.php │ │ ├── ShipperConveyanceDetail.php │ │ ├── ShippingDocumentDispositionDetail.php │ │ ├── ShippingDocumentEMailDetail.php │ │ ├── ShippingDocumentEMailRecipient.php │ │ ├── ShippingDocumentFormat.php │ │ ├── ShippingDocumentPrintDetail.php │ │ ├── ShippingDocumentSpecification.php │ │ ├── ShippingDocumentStorageDetail.php │ │ ├── SignatureOptionDetail.php │ │ ├── SmartPostAccountDetail.php │ │ ├── SmartPostShipmentDetail.php │ │ ├── SmartPostShipmentProcessingOptionsRequested.php │ │ ├── SmsDetail.php │ │ ├── SocialMediaDetail.php │ │ ├── SortAndSegregateDetail.php │ │ ├── SpecialEquipmentDetail.php │ │ ├── SpecialEquipmentLineItem.php │ │ ├── SplitPaymentDetail.php │ │ ├── SplitPaymentSpecification.php │ │ ├── StorageDetail.php │ │ ├── TaxExemptionDetail.php │ │ ├── TaxpayerIdentification.php │ │ ├── TrackingId.php │ │ ├── TransactionDetail.php │ │ ├── TransborderDistributionLtlDetail.php │ │ ├── TransborderDistributionSpecialServicesRequested.php │ │ ├── TransborderDistributionSummaryDetail.php │ │ ├── UploadDocumentDetail.php │ │ ├── UploadDocumentReferenceDetail.php │ │ ├── UsmcaCertificationOfOriginDetail.php │ │ ├── UsmcaCommercialInvoiceCertificationOfOriginDetail.php │ │ ├── UsmcaCommodityDetail.php │ │ ├── VariableHandlingChargeDetail.php │ │ ├── VersionId.php │ │ ├── Volume.php │ │ ├── WebAuthenticationCredential.php │ │ ├── WebAuthenticationDetail.php │ │ ├── WeighingDetail.php │ │ ├── Weight.php │ │ └── WelcomeKitDetail.php │ ├── Request.php │ └── SimpleType │ │ ├── AccessorRoleType.php │ │ ├── AccountAliasAttributeType.php │ │ ├── AccountAliasType.php │ │ ├── AdditionalLabelsType.php │ │ ├── AddressVerificationOverrideReasonType.php │ │ ├── AlcoholRecipientType.php │ │ ├── AssociatedAccountNumberType.php │ │ ├── AssociatedTrackingIdType.php │ │ ├── B13AFilingOptionType.php │ │ ├── BarcodeSymbologyType.php │ │ ├── BatteryMaterialType.php │ │ ├── BatteryPackingType.php │ │ ├── BatteryRegulatorySubType.php │ │ ├── BillingAccountAttributeType.php │ │ ├── BrokerPaymentType.php │ │ ├── BrokerType.php │ │ ├── CarrierCodeType.php │ │ ├── ChargeBasisLevelType.php │ │ ├── ChargeClassificationType.php │ │ ├── ClearanceBrokerageType.php │ │ ├── CodAddTransportationChargeBasisType.php │ │ ├── CodCollectionType.php │ │ ├── CodReturnReferenceIndicatorType.php │ │ ├── CommodityPurposeType.php │ │ ├── CompletedEtdType.php │ │ ├── ConsolidationShipmentRoleType.php │ │ ├── ConsolidationSpecialServiceType.php │ │ ├── ConsolidationType.php │ │ ├── CorrespondenceType.php │ │ ├── CreditCardAuthorizationType.php │ │ ├── CreditCardSettlementScheduleType.php │ │ ├── CreditCardTransactionAttributeType.php │ │ ├── CreditCardType.php │ │ ├── CustomDeliveryWindowType.php │ │ ├── CustomLabelCoordinateUnits.php │ │ ├── CustomRatingOptionType.php │ │ ├── CustomerAccountEntityType.php │ │ ├── CustomerAccountManagementStatusType.php │ │ ├── CustomerAccountStatusType.php │ │ ├── CustomerAccountType.php │ │ ├── CustomerBillingSettlementLevelType.php │ │ ├── CustomerCashType.php │ │ ├── CustomerDetailType.php │ │ ├── CustomerImageUsageType.php │ │ ├── CustomerIntegrationModeType.php │ │ ├── CustomerReferenceType.php │ │ ├── CustomerSpecifiedLabelGenerationOptionType.php │ │ ├── CustomsDeclarationStatementType.php │ │ ├── CustomsOptionType.php │ │ ├── CustomsRoleType.php │ │ ├── DamageStatusType.php │ │ ├── DangerousGoodsAccessibilityType.php │ │ ├── DangerousGoodsDescriptorType.php │ │ ├── DangerousGoodsPackingOptionType.php │ │ ├── DayOfWeekType.php │ │ ├── DeleteRecordedShipmentRequestServiceLevel.php │ │ ├── DestinationControlStatementType.php │ │ ├── DistributionClearanceType.php │ │ ├── DocTabContentType.php │ │ ├── DocTabZoneJustificationType.php │ │ ├── DocumentFormatOptionType.php │ │ ├── DropoffType.php │ │ ├── EMailNotificationFormatType.php │ │ ├── EMailNotificationRecipientType.php │ │ ├── EPaymentModeType.php │ │ ├── EPaymentProcessorType.php │ │ ├── EdtRequestType.php │ │ ├── EmailOptionType.php │ │ ├── EnterpriseAccountType.php │ │ ├── EnterprisePermissionType.php │ │ ├── EnterpriseProfileAttributeType.php │ │ ├── ErrorLabelBehaviorType.php │ │ ├── EtdAttributeType.php │ │ ├── EtdConfirmationType.php │ │ ├── ExemptionType.php │ │ ├── ExpressAccountType.php │ │ ├── ExpressProfileAttributeType.php │ │ ├── ExpressRegionCode.php │ │ ├── FedExDistributionLocationType.php │ │ ├── FedExLocationType.php │ │ ├── FlatbedTrailerOption.php │ │ ├── FreightAccountStatusType.php │ │ ├── FreightAccountType.php │ │ ├── FreightClassType.php │ │ ├── FreightCollectTermsType.php │ │ ├── FreightGuaranteeType.php │ │ ├── FreightOnValueType.php │ │ ├── FreightProfileAttributeType.php │ │ ├── FreightShipmentRoleType.php │ │ ├── FreightTariffType.php │ │ ├── Gender.php │ │ ├── GetAllServicesAndPackagingProcessingOptionType.php │ │ ├── GetAllSpecialServicesProcessingOptionType.php │ │ ├── GroundProfileAttributeType.php │ │ ├── HazardousCommodityDescriptionProcessingOptionType.php │ │ ├── HazardousCommodityLabelTextOptionType.php │ │ ├── HazardousCommodityOptionType.php │ │ ├── HazardousCommodityPackingGroupType.php │ │ ├── HazardousCommodityQuantityType.php │ │ ├── HazardousCommodityRegulationType.php │ │ ├── HazardousContainerPackingType.php │ │ ├── HomeDeliveryPremiumType.php │ │ ├── ImageId.php │ │ ├── InspectionStatusType.php │ │ ├── InternalImageType.php │ │ ├── InternationalControlledExportType.php │ │ ├── InternationalDocumentContentType.php │ │ ├── LabelFormatType.php │ │ ├── LabelMaskableDataType.php │ │ ├── LabelOrderType.php │ │ ├── LabelPrintingOrientationType.php │ │ ├── LabelRotationType.php │ │ ├── LabelSpecificationProcessingOptionType.php │ │ ├── LabelStockType.php │ │ ├── LiabilityCoverageType.php │ │ ├── LinearUnits.php │ │ ├── LocationAccessibilityType.php │ │ ├── NaftaImporterSpecificationType.php │ │ ├── NaftaNetCostMethodCode.php │ │ ├── NaftaPreferenceCriterionCode.php │ │ ├── NaftaProducerDeterminationCode.php │ │ ├── NaftaProducerSpecificationType.php │ │ ├── NationalAccountType.php │ │ ├── NetExplosiveClassificationType.php │ │ ├── NotificationContentType.php │ │ ├── NotificationEventType.php │ │ ├── NotificationFormatType.php │ │ ├── NotificationSeverityType.php │ │ ├── NotificationType.php │ │ ├── OperatingCompanyType.php │ │ ├── PackageLineItemStatusType.php │ │ ├── PackagePackedByType.php │ │ ├── PackagingType.php │ │ ├── PageQuadrantType.php │ │ ├── PaymentType.php │ │ ├── PendingShipmentProcessingOptionType.php │ │ ├── PendingShipmentType.php │ │ ├── PermissionType.php │ │ ├── PhoneNumberType.php │ │ ├── PhysicalFormType.php │ │ ├── PhysicalPackagingType.php │ │ ├── PickupRequestSourceType.php │ │ ├── PickupRequestType.php │ │ ├── PremierType.php │ │ ├── PrintedReferenceType.php │ │ ├── PriorityAlertEnhancementType.php │ │ ├── ProfileContactAttribute.php │ │ ├── ProfileContactType.php │ │ ├── ProfileType.php │ │ ├── PurposeOfShipmentType.php │ │ ├── RadioactiveContainerClassType.php │ │ ├── RadioactivityUnitOfMeasure.php │ │ ├── RateDiscountType.php │ │ ├── RateElementBasisType.php │ │ ├── RateLevelBasisType.php │ │ ├── RateRequestType.php │ │ ├── RateTypeBasisType.php │ │ ├── RecipientCustomsIdType.php │ │ ├── RecommendedDocumentType.php │ │ ├── RegulatoryControlType.php │ │ ├── RegulatoryLabelType.php │ │ ├── RelativeVerticalPositionType.php │ │ ├── RequestedShippingDocumentType.php │ │ ├── RestrictionsAndPrivilegesPolicyExceptionType.php │ │ ├── ReturnEMailAllowedSpecialServiceType.php │ │ ├── ReturnType.php │ │ ├── ReturnedRateType.php │ │ ├── RotationType.php │ │ ├── SecondaryBarcodeType.php │ │ ├── ServiceCategoryType.php │ │ ├── ServiceOptionType.php │ │ ├── ServiceType.php │ │ ├── ShipmentDryIceProcessingOptionType.php │ │ ├── ShipmentNotificationAggregationType.php │ │ ├── ShipmentNotificationRoleType.php │ │ ├── ShipmentOnlyFieldsType.php │ │ ├── ShipmentProcessingOptionType.php │ │ ├── ShippingDocumentDispositionType.php │ │ ├── ShippingDocumentEMailGroupingType.php │ │ ├── ShippingDocumentGroupingType.php │ │ ├── ShippingDocumentImageType.php │ │ ├── ShippingDocumentNamingType.php │ │ ├── ShippingDocumentStockType.php │ │ ├── ShippingDocumentStorageDetailType.php │ │ ├── SignatureOptionType.php │ │ ├── SmartPostAccountFeatureType.php │ │ ├── SmartPostAccountZoneType.php │ │ ├── SmartPostAncillaryEndorsementType.php │ │ ├── SmartPostIndiciaType.php │ │ ├── SmartPostShipmentProcessingOptionType.php │ │ ├── SmartPostShipmentSpecialServiceType.php │ │ ├── SpecialEquipmentType.php │ │ ├── SplitPaymentType.php │ │ ├── StatusType.php │ │ ├── SuppliesTypes.php │ │ ├── TaxesOrMiscellaneousChargeType.php │ │ ├── TinType.php │ │ ├── TrackingIdType.php │ │ ├── TransborderDistributionSpecialServiceType.php │ │ ├── TransitTimeType.php │ │ ├── UploadDocumentIdProducer.php │ │ ├── UploadDocumentProducerType.php │ │ ├── UploadDocumentType.php │ │ ├── UsageType.php │ │ ├── UsmcaCertifierSpecificationType.php │ │ ├── UsmcaImporterSpecificationType.php │ │ ├── UsmcaOriginCriterionCode.php │ │ ├── UsmcaProducerSpecificationType.php │ │ ├── VolumeUnits.php │ │ ├── WeighingScaleType.php │ │ ├── WeightSource.php │ │ └── WeightUnits.php │ └── _wsdl │ ├── ASYNCService_v4.wsdl │ ├── AddressValidationService_v4.wsdl │ ├── CloseService_v5.wsdl │ ├── CountryService_v8.wsdl │ ├── CourierDispatchService_v3.wsdl │ ├── DGDS_v3.wsdl │ ├── DGLD_v1.wsdl │ ├── InFlightShipmentService_v1.wsdl │ ├── LocationsService_v12.wsdl │ ├── OpenshipService_v20.wsdl │ ├── PackageMovementInformationService_v5.wsdl │ ├── PickupService_v23.wsdl │ ├── RateService_v31.wsdl │ ├── ReturnTagService_v1.wsdl │ ├── ShipService_v28.wsdl │ ├── TrackService_v20.wsdl │ ├── UploadDocumentService_v19.wsdl │ └── ValidationAvailabilityAndCommitmentService_v17.wsdl ├── tests ├── FedEx │ └── Tests │ │ ├── AddressValidationTest.php │ │ ├── AuthenticationTest.php │ │ ├── CloseServiceTest.php │ │ ├── CourierDispatchServiceTest.php │ │ ├── EntitiesTest.php │ │ ├── LocatorServiceTest.php │ │ ├── OpenShipServiceTest.php │ │ ├── PackageMovementInformationServiceTest.php │ │ ├── PickupServiceTest.php │ │ ├── RateServiceTest.php │ │ ├── ReturnTagServiceTest.php │ │ ├── ShipServiceTest.php │ │ ├── TestCase.php │ │ ├── TrackServiceTest.php │ │ ├── UploadDocumentServiceTest.php │ │ ├── ValidationAvailabilityAndCommitmentServiceTest.php │ │ └── WebServiceUrlTest.php ├── bootstrap.php └── mock-responses │ ├── address-validation-multiple-valid-addresses.ser │ ├── address-validation-unconfirmed.ser │ ├── address-validation-unknown.ser │ ├── error-authentication-failed.ser │ ├── rate-service-2-warning-notifications.ser │ ├── rate-service-rates-reply.ser │ └── rate-service-warning-no-valid-services-available.ser └── util ├── Cli └── GenerateCode │ ├── Application.php │ └── Command │ └── GenerateCode.php ├── CodeGenerator ├── AbstractGenerate.php ├── GenerateComplexTypeClasses.php ├── GenerateRequestClass.php └── GenerateSimpleTypeClasses.php ├── ComplexTypePopulator.php ├── MockResponseSerializer.php └── generate-classes-from-wsdls.php /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.php] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | trim_trailing_whitespace = true 8 | indent_style = space 9 | indent_size = 4 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.3 5 | - 7.4 6 | - 8.0 7 | 8 | install: 9 | - composer update --no-interaction --no-ansi --no-progress --optimize-autoloader --prefer-stable 10 | 11 | script: vendor/bin/phpunit 12 | 13 | notifications: 14 | email: false 15 | -------------------------------------------------------------------------------- /examples/CommercialInvoice.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyDunn/php-fedex-api-wrapper/39ffa1e6d1a3deb4de2235ff01776c6641eb8b7c/examples/CommercialInvoice.xls -------------------------------------------------------------------------------- /examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | The coding standard for PHP_CodeSniffer itself. 4 | 5 | examples 6 | src 7 | tests 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | *.js 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/FedEx/CloseService/SimpleType/CustomerImageUsageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Close Service 12 | */ 13 | class CustomerImageUsageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/CloseService/SimpleType/ImageId.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Close Service 12 | */ 13 | class ImageId extends AbstractSimpleType 14 | { 15 | const _IMAGE_1 = 'IMAGE_1'; 16 | const _IMAGE_2 = 'IMAGE_2'; 17 | const _IMAGE_3 = 'IMAGE_3'; 18 | const _IMAGE_4 = 'IMAGE_4'; 19 | const _IMAGE_5 = 'IMAGE_5'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/CloseService/SimpleType/InternalImageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Close Service 12 | */ 13 | class InternalImageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/CloseService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Close Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/CloseService/SimpleType/ShippingDocumentEMailGroupingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Close Service 12 | */ 13 | class ShippingDocumentEMailGroupingType extends AbstractSimpleType 14 | { 15 | const _BY_RECIPIENT = 'BY_RECIPIENT'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/CourierDispatchService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Courier Dispatch Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/CourierDispatchService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Courier Dispatch Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/DangerousGoodsContainerAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class DangerousGoodsContainerAttributeType extends AbstractSimpleType 14 | { 15 | const _ALL_PACKED_IN_ONE = 'ALL_PACKED_IN_ONE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/DangerousGoodsHandlingUnitAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class DangerousGoodsHandlingUnitAttributeType extends AbstractSimpleType 14 | { 15 | const _OVERPACK = 'OVERPACK'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/PhysicalFormType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class PhysicalFormType extends AbstractSimpleType 14 | { 15 | const _GAS = 'GAS'; 16 | const _LIQUID = 'LIQUID'; 17 | const _SOLID = 'SOLID'; 18 | const _SPECIAL = 'SPECIAL'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/RadioactiveLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class RadioactiveLabelType extends AbstractSimpleType 14 | { 15 | const _III_YELLOW = 'III_YELLOW'; 16 | const _II_YELLOW = 'II_YELLOW'; 17 | const _I_WHITE = 'I_WHITE'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/ShipmentDryIceProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class ShipmentDryIceProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _SHIPMENT_LEVEL_DRY_ICE_ONLY = 'SHIPMENT_LEVEL_DRY_ICE_ONLY'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/UploadDangerousGoodsProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class UploadDangerousGoodsProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _VALIDATION_ERRORS_AS_WARNINGS = 'VALIDATION_ERRORS_AS_WARNINGS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/UploadedDangerousGoodsShipmentAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class UploadedDangerousGoodsShipmentAttributeType extends AbstractSimpleType 14 | { 15 | const _MANUAL_SHIPPING_LABEL = 'MANUAL_SHIPPING_LABEL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/DGDSService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Dangerous Goods Data Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/DGLDService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage List Dangerous Goods Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/DeliveryActionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class DeliveryActionType extends AbstractSimpleType 14 | { 15 | const _ADD = 'ADD'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/DeliveryOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class DeliveryOptionType extends AbstractSimpleType 14 | { 15 | const _REDIRECT_TO_HOLD_AT_LOCATION = 'REDIRECT_TO_HOLD_AT_LOCATION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/DocumentFormatOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class DocumentFormatOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/OperationalDocumentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class OperationalDocumentType extends AbstractSimpleType 14 | { 15 | const _SIGNATURE_RELEASE_DOCUMENT = 'SIGNATURE_RELEASE_DOCUMENT'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/ShippingDocumentEMailGroupingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class ShippingDocumentEMailGroupingType extends AbstractSimpleType 14 | { 15 | const _BY_RECIPIENT = 'BY_RECIPIENT'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/InFlightShipmentService/SimpleType/SurchargeLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage In Flight Shipment Service 12 | */ 13 | class SurchargeLevelType extends AbstractSimpleType 14 | { 15 | const _PACKAGE = 'PACKAGE'; 16 | const _SHIPMENT = 'SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/CountryRelationshipType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class CountryRelationshipType extends AbstractSimpleType 14 | { 15 | const _DOMESTIC = 'DOMESTIC'; 16 | const _INTERNATIONAL = 'INTERNATIONAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/DistanceUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class DistanceUnits extends AbstractSimpleType 14 | { 15 | const _KM = 'KM'; 16 | const _MI = 'MI'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/LatestDropOffOverlayType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class LatestDropOffOverlayType extends AbstractSimpleType 14 | { 15 | const _US_WEST_COAST = 'US_WEST_COAST'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/LocationAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class LocationAccessibilityType extends AbstractSimpleType 14 | { 15 | const _INSIDE = 'INSIDE'; 16 | const _OUTSIDE = 'OUTSIDE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/LocationAttributesForInternalFedexUseType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class LocationAttributesForInternalFedexUseType extends AbstractSimpleType 14 | { 15 | const _FAMIS_LOCATION = 'FAMIS_LOCATION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/LocationSortOrderType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class LocationSortOrderType extends AbstractSimpleType 14 | { 15 | const _HIGHEST_TO_LOWEST = 'HIGHEST_TO_LOWEST'; 16 | const _LOWEST_TO_HIGHEST = 'LOWEST_TO_HIGHEST'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/ReservationAttributesType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class ReservationAttributesType extends AbstractSimpleType 14 | { 15 | const _RESERVATION_AVAILABLE = 'RESERVATION_AVAILABLE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/ShippingActionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class ShippingActionType extends AbstractSimpleType 14 | { 15 | const _DELIVERIES = 'DELIVERIES'; 16 | const _PICKUPS = 'PICKUPS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/LocationsService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Locations Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/AlcoholRecipientType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class AlcoholRecipientType extends AbstractSimpleType 14 | { 15 | const _CONSUMER = 'CONSUMER'; 16 | const _LICENSEE = 'LICENSEE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/BatteryMaterialType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class BatteryMaterialType extends AbstractSimpleType 14 | { 15 | const _LITHIUM_ION = 'LITHIUM_ION'; 16 | const _LITHIUM_METAL = 'LITHIUM_METAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/BatteryRegulatorySubType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class BatteryRegulatorySubType extends AbstractSimpleType 14 | { 15 | const _IATA_SECTION_II = 'IATA_SECTION_II'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/BinaryBarcodeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class BinaryBarcodeType extends AbstractSimpleType 14 | { 15 | const _COMMON_2D = 'COMMON_2D'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/BrokerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class BrokerType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _IMPORT = 'IMPORT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ChargeBasisLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ChargeBasisLevelType extends AbstractSimpleType 14 | { 15 | const _CURRENT_PACKAGE = 'CURRENT_PACKAGE'; 16 | const _SUM_OF_PACKAGES = 'SUM_OF_PACKAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/CodAdjustmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class CodAdjustmentType extends AbstractSimpleType 14 | { 15 | const _CHARGES_ADDED = 'CHARGES_ADDED'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/CommodityPurposeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class CommodityPurposeType extends AbstractSimpleType 14 | { 15 | const _BUSINESS = 'BUSINESS'; 16 | const _CONSUMER = 'CONSUMER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ConsolidationDataSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ConsolidationDataSourceType extends AbstractSimpleType 14 | { 15 | const _ACCUMULATED = 'ACCUMULATED'; 16 | const _CLIENT = 'CLIENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/CustomDeliveryWindowType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class CustomDeliveryWindowType extends AbstractSimpleType 14 | { 15 | const _AFTER = 'AFTER'; 16 | const _BEFORE = 'BEFORE'; 17 | const _BETWEEN = 'BETWEEN'; 18 | const _ON = 'ON'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/CustomLabelCoordinateUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class CustomLabelCoordinateUnits extends AbstractSimpleType 14 | { 15 | const _MILS = 'MILS'; 16 | const _PIXELS = 'PIXELS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/CustomerImageUsageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class CustomerImageUsageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/DangerousGoodsPackingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class DangerousGoodsPackingOptionType extends AbstractSimpleType 14 | { 15 | const _OVERPACK = 'OVERPACK'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/DeclarationValueType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class DeclarationValueType extends AbstractSimpleType 14 | { 15 | const _CUSTOMS_VALUE = 'CUSTOMS_VALUE'; 16 | const _INSURED_VALUE = 'INSURED_VALUE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/DocTabZoneJustificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class DocTabZoneJustificationType extends AbstractSimpleType 14 | { 15 | const _LEFT = 'LEFT'; 16 | const _RIGHT = 'RIGHT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/DocumentFormatOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class DocumentFormatOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/EPaymentProcessorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class EPaymentProcessorType extends AbstractSimpleType 14 | { 15 | const _RETAIL_SINGLE_POINT_OF_SALE = 'RETAIL_SINGLE_POINT_OF_SALE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/EdtRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class EdtRequestType extends AbstractSimpleType 14 | { 15 | const _ALL = 'ALL'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/EmailOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class EmailOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ACCESS_EMAILS = 'SUPPRESS_ACCESS_EMAILS'; 16 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/EtdAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class EtdAttributeType extends AbstractSimpleType 14 | { 15 | const _POST_SHIPMENT_UPLOAD_REQUESTED = 'POST_SHIPMENT_UPLOAD_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/FreightChargeBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class FreightChargeBasisType extends AbstractSimpleType 14 | { 15 | const _CWT = 'CWT'; 16 | const _FLAT = 'FLAT'; 17 | const _MINIMUM = 'MINIMUM'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/FreightCollectTermsType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class FreightCollectTermsType extends AbstractSimpleType 14 | { 15 | const _NON_RECOURSE_SHIPPER_SIGNED = 'NON_RECOURSE_SHIPPER_SIGNED'; 16 | const _STANDARD = 'STANDARD'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/FreightGuaranteeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class FreightGuaranteeType extends AbstractSimpleType 14 | { 15 | const _GUARANTEED_DATE = 'GUARANTEED_DATE'; 16 | const _GUARANTEED_MORNING = 'GUARANTEED_MORNING'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/FreightOnValueType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class FreightOnValueType extends AbstractSimpleType 14 | { 15 | const _CARRIER_RISK = 'CARRIER_RISK'; 16 | const _OWN_RISK = 'OWN_RISK'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/FreightRateQuoteType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class FreightRateQuoteType extends AbstractSimpleType 14 | { 15 | const _AUTOMATED = 'AUTOMATED'; 16 | const _MANUAL = 'MANUAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/FreightShipmentRoleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class FreightShipmentRoleType extends AbstractSimpleType 14 | { 15 | const _CONSIGNEE = 'CONSIGNEE'; 16 | const _SHIPPER = 'SHIPPER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/HazardousCommodityQuantityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class HazardousCommodityQuantityType extends AbstractSimpleType 14 | { 15 | const _GROSS = 'GROSS'; 16 | const _NET = 'NET'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/HazardousContainerPackingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class HazardousContainerPackingType extends AbstractSimpleType 14 | { 15 | const _ALL_PACKED_IN_ONE = 'ALL_PACKED_IN_ONE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/HomeDeliveryPremiumType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class HomeDeliveryPremiumType extends AbstractSimpleType 14 | { 15 | const _APPOINTMENT = 'APPOINTMENT'; 16 | const _DATE_CERTAIN = 'DATE_CERTAIN'; 17 | const _EVENING = 'EVENING'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ImageId.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ImageId extends AbstractSimpleType 14 | { 15 | const _IMAGE_1 = 'IMAGE_1'; 16 | const _IMAGE_2 = 'IMAGE_2'; 17 | const _IMAGE_3 = 'IMAGE_3'; 18 | const _IMAGE_4 = 'IMAGE_4'; 19 | const _IMAGE_5 = 'IMAGE_5'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/LabelFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class LabelFormatType extends AbstractSimpleType 14 | { 15 | const _COMMON2D = 'COMMON2D'; 16 | const _LABEL_DATA_ONLY = 'LABEL_DATA_ONLY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/LiabilityCoverageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class LiabilityCoverageType extends AbstractSimpleType 14 | { 15 | const _NEW = 'NEW'; 16 | const _USED_OR_RECONDITIONED = 'USED_OR_RECONDITIONED'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/NaftaNetCostMethodCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class NaftaNetCostMethodCode extends AbstractSimpleType 14 | { 15 | const _NC = 'NC'; 16 | const _NO = 'NO'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/NotificationFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class NotificationFormatType extends AbstractSimpleType 14 | { 15 | const _HTML = 'HTML'; 16 | const _TEXT = 'TEXT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/NotificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class NotificationType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/OversizeClassType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class OversizeClassType extends AbstractSimpleType 14 | { 15 | const _OVERSIZE_1 = 'OVERSIZE_1'; 16 | const _OVERSIZE_2 = 'OVERSIZE_2'; 17 | const _OVERSIZE_3 = 'OVERSIZE_3'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/PendingShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class PendingShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _ALLOW_MODIFICATIONS = 'ALLOW_MODIFICATIONS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/PendingShipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class PendingShipmentType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/PhysicalFormType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class PhysicalFormType extends AbstractSimpleType 14 | { 15 | const _GAS = 'GAS'; 16 | const _LIQUID = 'LIQUID'; 17 | const _SOLID = 'SOLID'; 18 | const _SPECIAL = 'SPECIAL'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/PickupRequestSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class PickupRequestSourceType extends AbstractSimpleType 14 | { 15 | const _AUTOMATION = 'AUTOMATION'; 16 | const _CUSTOMER_SERVICE = 'CUSTOMER_SERVICE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/PickupRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class PickupRequestType extends AbstractSimpleType 14 | { 15 | const _FUTURE_DAY = 'FUTURE_DAY'; 16 | const _SAME_DAY = 'SAME_DAY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/PriorityAlertEnhancementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class PriorityAlertEnhancementType extends AbstractSimpleType 14 | { 15 | const _PRIORITY_ALERT_PLUS = 'PRIORITY_ALERT_PLUS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ProhibitionSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ProhibitionSourceType extends AbstractSimpleType 14 | { 15 | const _FEDEX = 'FEDEX'; 16 | const _GOVERNMENT = 'GOVERNMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ProhibitionStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ProhibitionStatusType extends AbstractSimpleType 14 | { 15 | const _PROHIBITED = 'PROHIBITED'; 16 | const _WAIVED = 'WAIVED'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ProhibitionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ProhibitionType extends AbstractSimpleType 14 | { 15 | const _COMMODITY = 'COMMODITY'; 16 | const _COUNTRY = 'COUNTRY'; 17 | const _DOCUMENT = 'DOCUMENT'; 18 | const _SHIPMENT = 'SHIPMENT'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RadioactiveLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RadioactiveLabelType extends AbstractSimpleType 14 | { 15 | const _III_YELLOW = 'III_YELLOW'; 16 | const _II_YELLOW = 'II_YELLOW'; 17 | const _I_WHITE = 'I_WHITE'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RateRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RateRequestType extends AbstractSimpleType 14 | { 15 | const _LIST = 'LIST'; 16 | const _NONE = 'NONE'; 17 | const _PREFERRED = 'PREFERRED'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RateTypeBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RateTypeBasisType extends AbstractSimpleType 14 | { 15 | const _ACCOUNT = 'ACCOUNT'; 16 | const _LIST = 'LIST'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RebateType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RebateType extends AbstractSimpleType 14 | { 15 | const _BONUS = 'BONUS'; 16 | const _EARNED = 'EARNED'; 17 | const _OTHER = 'OTHER'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RecipientCustomsIdType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RecipientCustomsIdType extends AbstractSimpleType 14 | { 15 | const _COMPANY = 'COMPANY'; 16 | const _INDIVIDUAL = 'INDIVIDUAL'; 17 | const _PASSPORT = 'PASSPORT'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RegulatoryLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RegulatoryLabelType extends AbstractSimpleType 14 | { 15 | const _ALCOHOL_SHIPMENT_LABEL = 'ALCOHOL_SHIPMENT_LABEL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RelativeVerticalPositionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RelativeVerticalPositionType extends AbstractSimpleType 14 | { 15 | const _ABOVE = 'ABOVE'; 16 | const _BELOW = 'BELOW'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/RequirementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class RequirementType extends AbstractSimpleType 14 | { 15 | const _OPTIONAL = 'OPTIONAL'; 16 | const _PROHIBITED = 'PROHIBITED'; 17 | const _REQUIRED = 'REQUIRED'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ReturnType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ReturnType extends AbstractSimpleType 14 | { 15 | const _FEDEX_TAG = 'FEDEX_TAG'; 16 | const _PENDING = 'PENDING'; 17 | const _PRINT_RETURN_LABEL = 'PRINT_RETURN_LABEL'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/SecondaryBarcodeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class SecondaryBarcodeType extends AbstractSimpleType 14 | { 15 | const _COMMON_2D = 'COMMON_2D'; 16 | const _NONE = 'NONE'; 17 | const _SSCC_18 = 'SSCC_18'; 18 | const _USPS = 'USPS'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ShipmentDryIceProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ShipmentDryIceProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _SHIPMENT_LEVEL_DRY_ICE_ONLY = 'SHIPMENT_LEVEL_DRY_ICE_ONLY'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ShipmentNotificationAggregationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ShipmentNotificationAggregationType extends AbstractSimpleType 14 | { 15 | const _PER_PACKAGE = 'PER_PACKAGE'; 16 | const _PER_SHIPMENT = 'PER_SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ShipmentRuleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ShipmentRuleType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _GENERAL = 'GENERAL'; 17 | const _IMPORT = 'IMPORT'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ShippingDocumentEMailGroupingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ShippingDocumentEMailGroupingType extends AbstractSimpleType 14 | { 15 | const _BY_RECIPIENT = 'BY_RECIPIENT'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/ShippingDocumentStorageDetailType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class ShippingDocumentStorageDetailType extends AbstractSimpleType 14 | { 15 | const _ASYNC_SERVICE = 'ASYNC_SERVICE'; 16 | const _LOCAL_FILE_SYSTEM = 'LOCAL_FILE_SYSTEM'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/SmartPostShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class SmartPostShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _GROUND_TRACKING_NUMBER_REQUESTED = 'GROUND_TRACKING_NUMBER_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/SurchargeLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class SurchargeLevelType extends AbstractSimpleType 14 | { 15 | const _PACKAGE = 'PACKAGE'; 16 | const _SHIPMENT = 'SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/TransborderDistributionSpecialServiceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class TransborderDistributionSpecialServiceType extends AbstractSimpleType 14 | { 15 | const _FEDEX_LTL = 'FEDEX_LTL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/UnitSystemType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class UnitSystemType extends AbstractSimpleType 14 | { 15 | const _ENGLISH = 'ENGLISH'; 16 | const _METRIC = 'METRIC'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/UploadDocumentIdProducer.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class UploadDocumentIdProducer extends AbstractSimpleType 14 | { 15 | const _CUSTOMER = 'CUSTOMER'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/UploadDocumentProducerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class UploadDocumentProducerType extends AbstractSimpleType 14 | { 15 | const _CUSTOMER = 'CUSTOMER'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/UsmcaImporterSpecificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class UsmcaImporterSpecificationType extends AbstractSimpleType 14 | { 15 | const _UNKNOWN = 'UNKNOWN'; 16 | const _VARIOUS = 'VARIOUS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/UsmcaOriginCriterionCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class UsmcaOriginCriterionCode extends AbstractSimpleType 14 | { 15 | const _A = 'A'; 16 | const _B = 'B'; 17 | const _C = 'C'; 18 | const _D = 'D'; 19 | const _E = 'E'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/VolumeUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class VolumeUnits extends AbstractSimpleType 14 | { 15 | const _CUBIC_FT = 'CUBIC_FT'; 16 | const _CUBIC_M = 'CUBIC_M'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/OpenShipService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage OpenShip Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/ChargeBasisLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class ChargeBasisLevelType extends AbstractSimpleType 14 | { 15 | const _CURRENT_PACKAGE = 'CURRENT_PACKAGE'; 16 | const _SUM_OF_PACKAGES = 'SUM_OF_PACKAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/CloseTimeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class CloseTimeType extends AbstractSimpleType 14 | { 15 | const _CUSTOMER_SPECIFIED = 'CUSTOMER_SPECIFIED'; 16 | const _DEFAULT = 'DEFAULT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/CountryRelationshipType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class CountryRelationshipType extends AbstractSimpleType 14 | { 15 | const _DOMESTIC = 'DOMESTIC'; 16 | const _INTERNATIONAL = 'INTERNATIONAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/CustomDeliveryWindowType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class CustomDeliveryWindowType extends AbstractSimpleType 14 | { 15 | const _AFTER = 'AFTER'; 16 | const _BEFORE = 'BEFORE'; 17 | const _BETWEEN = 'BETWEEN'; 18 | const _ON = 'ON'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/DistanceUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class DistanceUnits extends AbstractSimpleType 14 | { 15 | const _KM = 'KM'; 16 | const _MI = 'MI'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/EPaymentProcessorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class EPaymentProcessorType extends AbstractSimpleType 14 | { 15 | const _RETAIL_SINGLE_POINT_OF_SALE = 'RETAIL_SINGLE_POINT_OF_SALE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/EtdAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class EtdAttributeType extends AbstractSimpleType 14 | { 15 | const _POST_SHIPMENT_UPLOAD_REQUESTED = 'POST_SHIPMENT_UPLOAD_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/FlatbedTrailerOption.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class FlatbedTrailerOption extends AbstractSimpleType 14 | { 15 | const _OVER_DIMENSION = 'OVER_DIMENSION'; 16 | const _TARP = 'TARP'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/FreightShipmentRoleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class FreightShipmentRoleType extends AbstractSimpleType 14 | { 15 | const _CONSIGNEE = 'CONSIGNEE'; 16 | const _SHIPPER = 'SHIPPER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/HomeDeliveryPremiumType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class HomeDeliveryPremiumType extends AbstractSimpleType 14 | { 15 | const _APPOINTMENT = 'APPOINTMENT'; 16 | const _DATE_CERTAIN = 'DATE_CERTAIN'; 17 | const _EVENING = 'EVENING'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/NotificationFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class NotificationFormatType extends AbstractSimpleType 14 | { 15 | const _HTML = 'HTML'; 16 | const _TEXT = 'TEXT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/NotificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class NotificationType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | const _FAX = 'FAX'; 17 | const _SMS_TEXT_MESSAGE = 'SMS_TEXT_MESSAGE'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/PendingShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class PendingShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _ALLOW_MODIFICATIONS = 'ALLOW_MODIFICATIONS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/PendingShipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class PendingShipmentType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/PickupBuildingLocationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class PickupBuildingLocationType extends AbstractSimpleType 14 | { 15 | const _FRONT = 'FRONT'; 16 | const _NONE = 'NONE'; 17 | const _REAR = 'REAR'; 18 | const _SIDE = 'SIDE'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/PickupRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class PickupRequestType extends AbstractSimpleType 14 | { 15 | const _FUTURE_DAY = 'FUTURE_DAY'; 16 | const _SAME_DAY = 'SAME_DAY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/PickupStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class PickupStatusType extends AbstractSimpleType 14 | { 15 | const _CANCELLED = 'CANCELLED'; 16 | const _COMPLETED = 'COMPLETED'; 17 | const _OPEN = 'OPEN'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/PriorityAlertEnhancementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class PriorityAlertEnhancementType extends AbstractSimpleType 14 | { 15 | const _PRIORITY_ALERT_PLUS = 'PRIORITY_ALERT_PLUS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/RateLevelBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class RateLevelBasisType extends AbstractSimpleType 14 | { 15 | const _BUNDLED_RATE = 'BUNDLED_RATE'; 16 | const _INDIVIDUAL_PACKAGE_RATE = 'INDIVIDUAL_PACKAGE_RATE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/ShipmentDryIceProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class ShipmentDryIceProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _SHIPMENT_LEVEL_DRY_ICE_ONLY = 'SHIPMENT_LEVEL_DRY_ICE_ONLY'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/ShipmentNotificationAggregationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class ShipmentNotificationAggregationType extends AbstractSimpleType 14 | { 15 | const _PER_PACKAGE = 'PER_PACKAGE'; 16 | const _PER_SHIPMENT = 'PER_SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/SpecialEquipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class SpecialEquipmentType extends AbstractSimpleType 14 | { 15 | const _FORK_LIFT = 'FORK_LIFT'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/TrailerSizeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class TrailerSizeType extends AbstractSimpleType 14 | { 15 | const _TRAILER_28_FT = 'TRAILER_28_FT'; 16 | const _TRAILER_48_FT = 'TRAILER_48_FT'; 17 | const _TRAILER_53_FT = 'TRAILER_53_FT'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/TruckType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class TruckType extends AbstractSimpleType 14 | { 15 | const _DROP_TRAILER_AGREEMENT = 'DROP_TRAILER_AGREEMENT'; 16 | const _LIFTGATE = 'LIFTGATE'; 17 | const _TRACTOR_TRAILER_ACCESS = 'TRACTOR_TRAILER_ACCESS'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/WeighingScaleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class WeighingScaleType extends AbstractSimpleType 14 | { 15 | const _FEDEX_SCALE = 'FEDEX_SCALE'; 16 | const _PUBLIC_SCALE = 'PUBLIC_SCALE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/PickupService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Pickup Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/AlcoholRecipientType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class AlcoholRecipientType extends AbstractSimpleType 14 | { 15 | const _CONSUMER = 'CONSUMER'; 16 | const _LICENSEE = 'LICENSEE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/BatteryMaterialType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class BatteryMaterialType extends AbstractSimpleType 14 | { 15 | const _LITHIUM_ION = 'LITHIUM_ION'; 16 | const _LITHIUM_METAL = 'LITHIUM_METAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/BatteryRegulatorySubType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class BatteryRegulatorySubType extends AbstractSimpleType 14 | { 15 | const _IATA_SECTION_II = 'IATA_SECTION_II'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/BrokerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class BrokerType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _IMPORT = 'IMPORT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/ChargeBasisLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class ChargeBasisLevelType extends AbstractSimpleType 14 | { 15 | const _CURRENT_PACKAGE = 'CURRENT_PACKAGE'; 16 | const _SUM_OF_PACKAGES = 'SUM_OF_PACKAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/CommodityPurposeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class CommodityPurposeType extends AbstractSimpleType 14 | { 15 | const _BUSINESS = 'BUSINESS'; 16 | const _CONSUMER = 'CONSUMER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/CustomDeliveryWindowType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class CustomDeliveryWindowType extends AbstractSimpleType 14 | { 15 | const _AFTER = 'AFTER'; 16 | const _BEFORE = 'BEFORE'; 17 | const _BETWEEN = 'BETWEEN'; 18 | const _ON = 'ON'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/CustomLabelCoordinateUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class CustomLabelCoordinateUnits extends AbstractSimpleType 14 | { 15 | const _MILS = 'MILS'; 16 | const _PIXELS = 'PIXELS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/CustomerImageUsageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class CustomerImageUsageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/DangerousGoodsPackingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class DangerousGoodsPackingOptionType extends AbstractSimpleType 14 | { 15 | const _OVERPACK = 'OVERPACK'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/DistanceUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class DistanceUnits extends AbstractSimpleType 14 | { 15 | const _KM = 'KM'; 16 | const _MI = 'MI'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/DocTabZoneJustificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class DocTabZoneJustificationType extends AbstractSimpleType 14 | { 15 | const _LEFT = 'LEFT'; 16 | const _RIGHT = 'RIGHT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/DocumentFormatOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class DocumentFormatOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/EPaymentProcessorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class EPaymentProcessorType extends AbstractSimpleType 14 | { 15 | const _RETAIL_SINGLE_POINT_OF_SALE = 'RETAIL_SINGLE_POINT_OF_SALE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/EdtRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class EdtRequestType extends AbstractSimpleType 14 | { 15 | const _ALL = 'ALL'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/EtdAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class EtdAttributeType extends AbstractSimpleType 14 | { 15 | const _POST_SHIPMENT_UPLOAD_REQUESTED = 'POST_SHIPMENT_UPLOAD_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FlatbedTrailerOption.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FlatbedTrailerOption extends AbstractSimpleType 14 | { 15 | const _OVER_DIMENSION = 'OVER_DIMENSION'; 16 | const _TARP = 'TARP'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FreightChargeBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FreightChargeBasisType extends AbstractSimpleType 14 | { 15 | const _CWT = 'CWT'; 16 | const _FLAT = 'FLAT'; 17 | const _MINIMUM = 'MINIMUM'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FreightCollectTermsType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FreightCollectTermsType extends AbstractSimpleType 14 | { 15 | const _NON_RECOURSE_SHIPPER_SIGNED = 'NON_RECOURSE_SHIPPER_SIGNED'; 16 | const _STANDARD = 'STANDARD'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FreightGuaranteeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FreightGuaranteeType extends AbstractSimpleType 14 | { 15 | const _GUARANTEED_DATE = 'GUARANTEED_DATE'; 16 | const _GUARANTEED_MORNING = 'GUARANTEED_MORNING'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FreightOnValueType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FreightOnValueType extends AbstractSimpleType 14 | { 15 | const _CARRIER_RISK = 'CARRIER_RISK'; 16 | const _OWN_RISK = 'OWN_RISK'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FreightRateQuoteType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FreightRateQuoteType extends AbstractSimpleType 14 | { 15 | const _AUTOMATED = 'AUTOMATED'; 16 | const _MANUAL = 'MANUAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/FreightShipmentRoleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class FreightShipmentRoleType extends AbstractSimpleType 14 | { 15 | const _CONSIGNEE = 'CONSIGNEE'; 16 | const _SHIPPER = 'SHIPPER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/HazardousCommodityQuantityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class HazardousCommodityQuantityType extends AbstractSimpleType 14 | { 15 | const _GROSS = 'GROSS'; 16 | const _NET = 'NET'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/HazardousContainerPackingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class HazardousContainerPackingType extends AbstractSimpleType 14 | { 15 | const _ALL_PACKED_IN_ONE = 'ALL_PACKED_IN_ONE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/HomeDeliveryPremiumType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class HomeDeliveryPremiumType extends AbstractSimpleType 14 | { 15 | const _APPOINTMENT = 'APPOINTMENT'; 16 | const _DATE_CERTAIN = 'DATE_CERTAIN'; 17 | const _EVENING = 'EVENING'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/ImageId.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class ImageId extends AbstractSimpleType 14 | { 15 | const _IMAGE_1 = 'IMAGE_1'; 16 | const _IMAGE_2 = 'IMAGE_2'; 17 | const _IMAGE_3 = 'IMAGE_3'; 18 | const _IMAGE_4 = 'IMAGE_4'; 19 | const _IMAGE_5 = 'IMAGE_5'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/InternationalDocumentContentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class InternationalDocumentContentType extends AbstractSimpleType 14 | { 15 | const _DOCUMENTS_ONLY = 'DOCUMENTS_ONLY'; 16 | const _NON_DOCUMENTS = 'NON_DOCUMENTS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/LabelOrderType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class LabelOrderType extends AbstractSimpleType 14 | { 15 | const _SHIPPING_LABEL_FIRST = 'SHIPPING_LABEL_FIRST'; 16 | const _SHIPPING_LABEL_LAST = 'SHIPPING_LABEL_LAST'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/LiabilityCoverageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class LiabilityCoverageType extends AbstractSimpleType 14 | { 15 | const _NEW = 'NEW'; 16 | const _USED_OR_RECONDITIONED = 'USED_OR_RECONDITIONED'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/NaftaNetCostMethodCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class NaftaNetCostMethodCode extends AbstractSimpleType 14 | { 15 | const _NC = 'NC'; 16 | const _NO = 'NO'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/NotificationFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class NotificationFormatType extends AbstractSimpleType 14 | { 15 | const _HTML = 'HTML'; 16 | const _TEXT = 'TEXT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/NotificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class NotificationType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/OversizeClassType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class OversizeClassType extends AbstractSimpleType 14 | { 15 | const _OVERSIZE_1 = 'OVERSIZE_1'; 16 | const _OVERSIZE_2 = 'OVERSIZE_2'; 17 | const _OVERSIZE_3 = 'OVERSIZE_3'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PaymentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PaymentType extends AbstractSimpleType 14 | { 15 | const _EPAYMENT = 'EPAYMENT'; 16 | const _SENDER = 'SENDER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PendingShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PendingShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _ALLOW_MODIFICATIONS = 'ALLOW_MODIFICATIONS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PendingShipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PendingShipmentType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PhysicalFormType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PhysicalFormType extends AbstractSimpleType 14 | { 15 | const _GAS = 'GAS'; 16 | const _LIQUID = 'LIQUID'; 17 | const _SOLID = 'SOLID'; 18 | const _SPECIAL = 'SPECIAL'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PickupRequestSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PickupRequestSourceType extends AbstractSimpleType 14 | { 15 | const _AUTOMATION = 'AUTOMATION'; 16 | const _CUSTOMER_SERVICE = 'CUSTOMER_SERVICE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PickupRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PickupRequestType extends AbstractSimpleType 14 | { 15 | const _FUTURE_DAY = 'FUTURE_DAY'; 16 | const _SAME_DAY = 'SAME_DAY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/PriorityAlertEnhancementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class PriorityAlertEnhancementType extends AbstractSimpleType 14 | { 15 | const _PRIORITY_ALERT_PLUS = 'PRIORITY_ALERT_PLUS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/RateRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class RateRequestType extends AbstractSimpleType 14 | { 15 | const _LIST = 'LIST'; 16 | const _NONE = 'NONE'; 17 | const _PREFERRED = 'PREFERRED'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/RateTypeBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class RateTypeBasisType extends AbstractSimpleType 14 | { 15 | const _ACCOUNT = 'ACCOUNT'; 16 | const _LIST = 'LIST'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/RebateType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class RebateType extends AbstractSimpleType 14 | { 15 | const _BONUS = 'BONUS'; 16 | const _EARNED = 'EARNED'; 17 | const _OTHER = 'OTHER'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/RecipientCustomsIdType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class RecipientCustomsIdType extends AbstractSimpleType 14 | { 15 | const _COMPANY = 'COMPANY'; 16 | const _INDIVIDUAL = 'INDIVIDUAL'; 17 | const _PASSPORT = 'PASSPORT'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/RegulatoryLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class RegulatoryLabelType extends AbstractSimpleType 14 | { 15 | const _ALCOHOL_SHIPMENT_LABEL = 'ALCOHOL_SHIPMENT_LABEL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/RelativeVerticalPositionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class RelativeVerticalPositionType extends AbstractSimpleType 14 | { 15 | const _ABOVE = 'ABOVE'; 16 | const _BELOW = 'BELOW'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/ReturnType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class ReturnType extends AbstractSimpleType 14 | { 15 | const _FEDEX_TAG = 'FEDEX_TAG'; 16 | const _PENDING = 'PENDING'; 17 | const _PRINT_RETURN_LABEL = 'PRINT_RETURN_LABEL'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/SecondaryBarcodeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class SecondaryBarcodeType extends AbstractSimpleType 14 | { 15 | const _COMMON_2D = 'COMMON_2D'; 16 | const _NONE = 'NONE'; 17 | const _SSCC_18 = 'SSCC_18'; 18 | const _USPS = 'USPS'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/ShipmentDryIceProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class ShipmentDryIceProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _SHIPMENT_LEVEL_DRY_ICE_ONLY = 'SHIPMENT_LEVEL_DRY_ICE_ONLY'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/ShipmentNotificationAggregationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class ShipmentNotificationAggregationType extends AbstractSimpleType 14 | { 15 | const _PER_PACKAGE = 'PER_PACKAGE'; 16 | const _PER_SHIPMENT = 'PER_SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/ShippingDocumentEMailGroupingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class ShippingDocumentEMailGroupingType extends AbstractSimpleType 14 | { 15 | const _BY_RECIPIENT = 'BY_RECIPIENT'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/SmartPostShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class SmartPostShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _GROUND_TRACKING_NUMBER_REQUESTED = 'GROUND_TRACKING_NUMBER_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/SurchargeLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class SurchargeLevelType extends AbstractSimpleType 14 | { 15 | const _PACKAGE = 'PACKAGE'; 16 | const _SHIPMENT = 'SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/TrackingIdType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class TrackingIdType extends AbstractSimpleType 14 | { 15 | const _EXPRESS = 'EXPRESS'; 16 | const _FEDEX = 'FEDEX'; 17 | const _GROUND = 'GROUND'; 18 | const _USPS = 'USPS'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/UsmcaCertifierSpecificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class UsmcaCertifierSpecificationType extends AbstractSimpleType 14 | { 15 | const _EXPORTER = 'EXPORTER'; 16 | const _IMPORTER = 'IMPORTER'; 17 | const _PRODUCER = 'PRODUCER'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/UsmcaImporterSpecificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class UsmcaImporterSpecificationType extends AbstractSimpleType 14 | { 15 | const _UNKNOWN = 'UNKNOWN'; 16 | const _VARIOUS = 'VARIOUS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/UsmcaOriginCriterionCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class UsmcaOriginCriterionCode extends AbstractSimpleType 14 | { 15 | const _A = 'A'; 16 | const _B = 'B'; 17 | const _C = 'C'; 18 | const _D = 'D'; 19 | const _E = 'E'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/VolumeUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class VolumeUnits extends AbstractSimpleType 14 | { 15 | const _CUBIC_FT = 'CUBIC_FT'; 16 | const _CUBIC_M = 'CUBIC_M'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/RateService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Rate Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/AlcoholRecipientType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class AlcoholRecipientType extends AbstractSimpleType 14 | { 15 | const _CONSUMER = 'CONSUMER'; 16 | const _LICENSEE = 'LICENSEE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/BatteryRegulatorySubType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class BatteryRegulatorySubType extends AbstractSimpleType 14 | { 15 | const _IATA_SECTION_II = 'IATA_SECTION_II'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/BinaryBarcodeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class BinaryBarcodeType extends AbstractSimpleType 14 | { 15 | const _COMMON_2D = 'COMMON_2D'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/BrokerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class BrokerType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _IMPORT = 'IMPORT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ChargeBasisLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ChargeBasisLevelType extends AbstractSimpleType 14 | { 15 | const _CURRENT_PACKAGE = 'CURRENT_PACKAGE'; 16 | const _SUM_OF_PACKAGES = 'SUM_OF_PACKAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CodAdjustmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CodAdjustmentType extends AbstractSimpleType 14 | { 15 | const _CHARGES_ADDED = 'CHARGES_ADDED'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CommodityPurposeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CommodityPurposeType extends AbstractSimpleType 14 | { 15 | const _BUSINESS = 'BUSINESS'; 16 | const _CONSUMER = 'CONSUMER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CompletedEtdType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CompletedEtdType extends AbstractSimpleType 14 | { 15 | const _ELECTRONIC_DOCUMENTS_ONLY = 'ELECTRONIC_DOCUMENTS_ONLY'; 16 | const _ELECTRONIC_DOCUMENTS_WITH_ORIGINALS = 'ELECTRONIC_DOCUMENTS_WITH_ORIGINALS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CustomDeliveryWindowType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CustomDeliveryWindowType extends AbstractSimpleType 14 | { 15 | const _AFTER = 'AFTER'; 16 | const _BEFORE = 'BEFORE'; 17 | const _BETWEEN = 'BETWEEN'; 18 | const _ON = 'ON'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CustomLabelCoordinateUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CustomLabelCoordinateUnits extends AbstractSimpleType 14 | { 15 | const _MILS = 'MILS'; 16 | const _PIXELS = 'PIXELS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CustomRatingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CustomRatingOptionType extends AbstractSimpleType 14 | { 15 | const _DISCOUNT_EXCLUSION = 'DISCOUNT_EXCLUSION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CustomerImageUsageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CustomerImageUsageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/CustomsRoleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class CustomsRoleType extends AbstractSimpleType 14 | { 15 | const _EXPORTER = 'EXPORTER'; 16 | const _IMPORTER = 'IMPORTER'; 17 | const _LEGAL_AGENT = 'LEGAL_AGENT'; 18 | const _PRODUCER = 'PRODUCER'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/DangerousGoodsPackingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class DangerousGoodsPackingOptionType extends AbstractSimpleType 14 | { 15 | const _OVERPACK = 'OVERPACK'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/DocTabZoneJustificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class DocTabZoneJustificationType extends AbstractSimpleType 14 | { 15 | const _LEFT = 'LEFT'; 16 | const _RIGHT = 'RIGHT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/DocumentFormatOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class DocumentFormatOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/EPaymentProcessorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class EPaymentProcessorType extends AbstractSimpleType 14 | { 15 | const _RETAIL_SINGLE_POINT_OF_SALE = 'RETAIL_SINGLE_POINT_OF_SALE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/EdtRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class EdtRequestType extends AbstractSimpleType 14 | { 15 | const _ALL = 'ALL'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/EmailOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class EmailOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ACCESS_EMAILS = 'SUPPRESS_ACCESS_EMAILS'; 16 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ErrorLabelBehaviorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ErrorLabelBehaviorType extends AbstractSimpleType 14 | { 15 | const _PACKAGE_ERROR_LABELS = 'PACKAGE_ERROR_LABELS'; 16 | const _STANDARD = 'STANDARD'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/EtdAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class EtdAttributeType extends AbstractSimpleType 14 | { 15 | const _POST_SHIPMENT_UPLOAD_REQUESTED = 'POST_SHIPMENT_UPLOAD_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FlatbedTrailerOption.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FlatbedTrailerOption extends AbstractSimpleType 14 | { 15 | const _OVER_DIMENSION = 'OVER_DIMENSION'; 16 | const _TARP = 'TARP'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FreightChargeBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FreightChargeBasisType extends AbstractSimpleType 14 | { 15 | const _CWT = 'CWT'; 16 | const _FLAT = 'FLAT'; 17 | const _MINIMUM = 'MINIMUM'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FreightCollectTermsType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FreightCollectTermsType extends AbstractSimpleType 14 | { 15 | const _NON_RECOURSE_SHIPPER_SIGNED = 'NON_RECOURSE_SHIPPER_SIGNED'; 16 | const _STANDARD = 'STANDARD'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FreightGuaranteeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FreightGuaranteeType extends AbstractSimpleType 14 | { 15 | const _GUARANTEED_DATE = 'GUARANTEED_DATE'; 16 | const _GUARANTEED_MORNING = 'GUARANTEED_MORNING'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FreightOnValueType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FreightOnValueType extends AbstractSimpleType 14 | { 15 | const _CARRIER_RISK = 'CARRIER_RISK'; 16 | const _OWN_RISK = 'OWN_RISK'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FreightRateQuoteType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FreightRateQuoteType extends AbstractSimpleType 14 | { 15 | const _AUTOMATED = 'AUTOMATED'; 16 | const _MANUAL = 'MANUAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/FreightShipmentRoleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class FreightShipmentRoleType extends AbstractSimpleType 14 | { 15 | const _CONSIGNEE = 'CONSIGNEE'; 16 | const _SHIPPER = 'SHIPPER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/HazardousCommodityQuantityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class HazardousCommodityQuantityType extends AbstractSimpleType 14 | { 15 | const _GROSS = 'GROSS'; 16 | const _NET = 'NET'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/HazardousContainerPackingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class HazardousContainerPackingType extends AbstractSimpleType 14 | { 15 | const _ALL_PACKED_IN_ONE = 'ALL_PACKED_IN_ONE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/HomeDeliveryPremiumType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class HomeDeliveryPremiumType extends AbstractSimpleType 14 | { 15 | const _APPOINTMENT = 'APPOINTMENT'; 16 | const _DATE_CERTAIN = 'DATE_CERTAIN'; 17 | const _EVENING = 'EVENING'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ImageId.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ImageId extends AbstractSimpleType 14 | { 15 | const _IMAGE_1 = 'IMAGE_1'; 16 | const _IMAGE_2 = 'IMAGE_2'; 17 | const _IMAGE_3 = 'IMAGE_3'; 18 | const _IMAGE_4 = 'IMAGE_4'; 19 | const _IMAGE_5 = 'IMAGE_5'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/InternalImageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class InternalImageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/LabelOrderType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class LabelOrderType extends AbstractSimpleType 14 | { 15 | const _SHIPPING_LABEL_FIRST = 'SHIPPING_LABEL_FIRST'; 16 | const _SHIPPING_LABEL_LAST = 'SHIPPING_LABEL_LAST'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/LiabilityCoverageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class LiabilityCoverageType extends AbstractSimpleType 14 | { 15 | const _NEW = 'NEW'; 16 | const _USED_OR_RECONDITIONED = 'USED_OR_RECONDITIONED'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/NaftaNetCostMethodCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class NaftaNetCostMethodCode extends AbstractSimpleType 14 | { 15 | const _NC = 'NC'; 16 | const _NO = 'NO'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/NotificationFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class NotificationFormatType extends AbstractSimpleType 14 | { 15 | const _HTML = 'HTML'; 16 | const _TEXT = 'TEXT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/NotificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class NotificationType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/OversizeClassType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class OversizeClassType extends AbstractSimpleType 14 | { 15 | const _OVERSIZE_1 = 'OVERSIZE_1'; 16 | const _OVERSIZE_2 = 'OVERSIZE_2'; 17 | const _OVERSIZE_3 = 'OVERSIZE_3'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/PendingShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class PendingShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _ALLOW_MODIFICATIONS = 'ALLOW_MODIFICATIONS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/PendingShipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class PendingShipmentType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/PhysicalFormType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class PhysicalFormType extends AbstractSimpleType 14 | { 15 | const _GAS = 'GAS'; 16 | const _LIQUID = 'LIQUID'; 17 | const _SOLID = 'SOLID'; 18 | const _SPECIAL = 'SPECIAL'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/PickupRequestSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class PickupRequestSourceType extends AbstractSimpleType 14 | { 15 | const _AUTOMATION = 'AUTOMATION'; 16 | const _CUSTOMER_SERVICE = 'CUSTOMER_SERVICE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/PickupRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class PickupRequestType extends AbstractSimpleType 14 | { 15 | const _FUTURE_DAY = 'FUTURE_DAY'; 16 | const _SAME_DAY = 'SAME_DAY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/PriorityAlertEnhancementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class PriorityAlertEnhancementType extends AbstractSimpleType 14 | { 15 | const _PRIORITY_ALERT_PLUS = 'PRIORITY_ALERT_PLUS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ProhibitionSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ProhibitionSourceType extends AbstractSimpleType 14 | { 15 | const _FEDEX = 'FEDEX'; 16 | const _GOVERNMENT = 'GOVERNMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ProhibitionStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ProhibitionStatusType extends AbstractSimpleType 14 | { 15 | const _PROHIBITED = 'PROHIBITED'; 16 | const _WAIVED = 'WAIVED'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ProhibitionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ProhibitionType extends AbstractSimpleType 14 | { 15 | const _COMMODITY = 'COMMODITY'; 16 | const _COUNTRY = 'COUNTRY'; 17 | const _DOCUMENT = 'DOCUMENT'; 18 | const _SHIPMENT = 'SHIPMENT'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/RadioactiveLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class RadioactiveLabelType extends AbstractSimpleType 14 | { 15 | const _III_YELLOW = 'III_YELLOW'; 16 | const _II_YELLOW = 'II_YELLOW'; 17 | const _I_WHITE = 'I_WHITE'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/RebateType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class RebateType extends AbstractSimpleType 14 | { 15 | const _BONUS = 'BONUS'; 16 | const _EARNED = 'EARNED'; 17 | const _OTHER = 'OTHER'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/RecipientCustomsIdType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class RecipientCustomsIdType extends AbstractSimpleType 14 | { 15 | const _COMPANY = 'COMPANY'; 16 | const _INDIVIDUAL = 'INDIVIDUAL'; 17 | const _PASSPORT = 'PASSPORT'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/RegulatoryLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class RegulatoryLabelType extends AbstractSimpleType 14 | { 15 | const _ALCOHOL_SHIPMENT_LABEL = 'ALCOHOL_SHIPMENT_LABEL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/RelativeVerticalPositionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class RelativeVerticalPositionType extends AbstractSimpleType 14 | { 15 | const _ABOVE = 'ABOVE'; 16 | const _BELOW = 'BELOW'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/RequirementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class RequirementType extends AbstractSimpleType 14 | { 15 | const _OPTIONAL = 'OPTIONAL'; 16 | const _PROHIBITED = 'PROHIBITED'; 17 | const _REQUIRED = 'REQUIRED'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/SecondaryBarcodeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class SecondaryBarcodeType extends AbstractSimpleType 14 | { 15 | const _COMMON_2D = 'COMMON_2D'; 16 | const _NONE = 'NONE'; 17 | const _SSCC_18 = 'SSCC_18'; 18 | const _USPS = 'USPS'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ShipmentDryIceProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ShipmentDryIceProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _SHIPMENT_LEVEL_DRY_ICE_ONLY = 'SHIPMENT_LEVEL_DRY_ICE_ONLY'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ShipmentNotificationAggregationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ShipmentNotificationAggregationType extends AbstractSimpleType 14 | { 15 | const _PER_PACKAGE = 'PER_PACKAGE'; 16 | const _PER_SHIPMENT = 'PER_SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ShipmentRuleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ShipmentRuleType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _GENERAL = 'GENERAL'; 17 | const _IMPORT = 'IMPORT'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ShippingDocumentEMailGroupingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ShippingDocumentEMailGroupingType extends AbstractSimpleType 14 | { 15 | const _BY_RECIPIENT = 'BY_RECIPIENT'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/ShippingDocumentStorageDetailType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class ShippingDocumentStorageDetailType extends AbstractSimpleType 14 | { 15 | const _ASYNC_SERVICE = 'ASYNC_SERVICE'; 16 | const _LOCAL_FILE_SYSTEM = 'LOCAL_FILE_SYSTEM'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/SmartPostShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class SmartPostShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _GROUND_TRACKING_NUMBER_REQUESTED = 'GROUND_TRACKING_NUMBER_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/SmartPostShipmentSpecialServiceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class SmartPostShipmentSpecialServiceType extends AbstractSimpleType 14 | { 15 | const _USPS_DELIVERY_CONFIRMATION = 'USPS_DELIVERY_CONFIRMATION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/SpecialEquipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class SpecialEquipmentType extends AbstractSimpleType 14 | { 15 | const _FORK_LIFT = 'FORK_LIFT'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/SurchargeLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class SurchargeLevelType extends AbstractSimpleType 14 | { 15 | const _PACKAGE = 'PACKAGE'; 16 | const _SHIPMENT = 'SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/UsmcaCertifierSpecificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class UsmcaCertifierSpecificationType extends AbstractSimpleType 14 | { 15 | const _EXPORTER = 'EXPORTER'; 16 | const _IMPORTER = 'IMPORTER'; 17 | const _PRODUCER = 'PRODUCER'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/UsmcaImporterSpecificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class UsmcaImporterSpecificationType extends AbstractSimpleType 14 | { 15 | const _UNKNOWN = 'UNKNOWN'; 16 | const _VARIOUS = 'VARIOUS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/UsmcaOriginCriterionCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class UsmcaOriginCriterionCode extends AbstractSimpleType 14 | { 15 | const _A = 'A'; 16 | const _B = 'B'; 17 | const _C = 'C'; 18 | const _D = 'D'; 19 | const _E = 'E'; 20 | } 21 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/VolumeUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class VolumeUnits extends AbstractSimpleType 14 | { 15 | const _CUBIC_FT = 'CUBIC_FT'; 16 | const _CUBIC_M = 'CUBIC_M'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/WeighingScaleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class WeighingScaleType extends AbstractSimpleType 14 | { 15 | const _FEDEX_SCALE = 'FEDEX_SCALE'; 16 | const _PUBLIC_SCALE = 'PUBLIC_SCALE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/WeightSource.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class WeightSource extends AbstractSimpleType 14 | { 15 | const _MANUAL = 'MANUAL'; 16 | const _SCALE = 'SCALE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ShipService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Ship Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/AvailableImageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class AvailableImageType extends AbstractSimpleType 14 | { 15 | const _BILL_OF_LADING = 'BILL_OF_LADING'; 16 | const _SIGNATURE_PROOF_OF_DELIVERY = 'SIGNATURE_PROOF_OF_DELIVERY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/BarcodeEntryType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class BarcodeEntryType extends AbstractSimpleType 14 | { 15 | const _MANUAL_ENTRY = 'MANUAL_ENTRY'; 16 | const _SCAN = 'SCAN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/CommodityPurposeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class CommodityPurposeType extends AbstractSimpleType 14 | { 15 | const _BUSINESS = 'BUSINESS'; 16 | const _CONSUMER = 'CONSUMER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/DistanceUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class DistanceUnits extends AbstractSimpleType 14 | { 15 | const _KM = 'KM'; 16 | const _MI = 'MI'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/EPaymentProcessorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class EPaymentProcessorType extends AbstractSimpleType 14 | { 15 | const _RETAIL_SINGLE_POINT_OF_SALE = 'RETAIL_SINGLE_POINT_OF_SALE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/ImageSizeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class ImageSizeType extends AbstractSimpleType 14 | { 15 | const _LARGE = 'LARGE'; 16 | const _SMALL = 'SMALL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/NaftaNetCostMethodCode.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class NaftaNetCostMethodCode extends AbstractSimpleType 14 | { 15 | const _NC = 'NC'; 16 | const _NO = 'NO'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/NotificationFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class NotificationFormatType extends AbstractSimpleType 14 | { 15 | const _HTML = 'HTML'; 16 | const _TEXT = 'TEXT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/NotificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class NotificationType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/PieceCountLocationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class PieceCountLocationType extends AbstractSimpleType 14 | { 15 | const _DESTINATION = 'DESTINATION'; 16 | const _ORIGIN = 'ORIGIN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/ServiceDelayType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class ServiceDelayType extends AbstractSimpleType 14 | { 15 | const _DELAYED = 'DELAYED'; 16 | const _EARLY = 'EARLY'; 17 | const _ON_TIME = 'ON_TIME'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackAdvanceNotificationStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackAdvanceNotificationStatusType extends AbstractSimpleType 14 | { 15 | const _BACK_ON_TRACK = 'BACK_ON_TRACK'; 16 | const _FAIL = 'FAIL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackChargeDetailType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackChargeDetailType extends AbstractSimpleType 14 | { 15 | const _ORIGINAL_CHARGES = 'ORIGINAL_CHARGES'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackDetailAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackDetailAttributeType extends AbstractSimpleType 14 | { 15 | const _INCLUDED_IN_WATCHLIST = 'INCLUDED_IN_WATCHLIST'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackReturnLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackReturnLabelType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | const _PRINT = 'PRINT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackReturnMovementStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackReturnMovementStatusType extends AbstractSimpleType 14 | { 15 | const _MOVEMENT_OCCURRED = 'MOVEMENT_OCCURRED'; 16 | const _NO_MOVEMENT = 'NO_MOVEMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackingDocumentDispositionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackingDocumentDispositionType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | const _FAX = 'FAX'; 17 | const _RETURN = 'RETURN'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/TrackingDocumentImageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class TrackingDocumentImageType extends AbstractSimpleType 14 | { 15 | const _PDF = 'PDF'; 16 | const _PNG = 'PNG'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/TrackService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Package Movement Information Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/BatteryRegulatorySubType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class BatteryRegulatorySubType extends AbstractSimpleType 14 | { 15 | const _IATA_SECTION_II = 'IATA_SECTION_II'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/BinaryBarcodeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class BinaryBarcodeType extends AbstractSimpleType 14 | { 15 | const _COMMON_2D = 'COMMON_2D'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/BrokerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class BrokerType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _IMPORT = 'IMPORT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/ChargeBasisLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class ChargeBasisLevelType extends AbstractSimpleType 14 | { 15 | const _CURRENT_PACKAGE = 'CURRENT_PACKAGE'; 16 | const _SUM_OF_PACKAGES = 'SUM_OF_PACKAGES'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/CommodityPurposeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class CommodityPurposeType extends AbstractSimpleType 14 | { 15 | const _BUSINESS = 'BUSINESS'; 16 | const _CONSUMER = 'CONSUMER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/CustomLabelCoordinateUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class CustomLabelCoordinateUnits extends AbstractSimpleType 14 | { 15 | const _MILS = 'MILS'; 16 | const _PIXELS = 'PIXELS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/CustomRatingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class CustomRatingOptionType extends AbstractSimpleType 14 | { 15 | const _DISCOUNT_EXCLUSION = 'DISCOUNT_EXCLUSION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/CustomerImageUsageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class CustomerImageUsageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/DamageStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class DamageStatusType extends AbstractSimpleType 14 | { 15 | const _DAMAGE_KNOWN = 'DAMAGE_KNOWN'; 16 | const _NO_KNOWN_DAMAGE = 'NO_KNOWN_DAMAGE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/DangerousGoodsAccessibilityType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class DangerousGoodsAccessibilityType extends AbstractSimpleType 14 | { 15 | const _ACCESSIBLE = 'ACCESSIBLE'; 16 | const _INACCESSIBLE = 'INACCESSIBLE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/DangerousGoodsPackingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class DangerousGoodsPackingOptionType extends AbstractSimpleType 14 | { 15 | const _OVERPACK = 'OVERPACK'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/DocTabZoneJustificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class DocTabZoneJustificationType extends AbstractSimpleType 14 | { 15 | const _LEFT = 'LEFT'; 16 | const _RIGHT = 'RIGHT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/DocumentFormatOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class DocumentFormatOptionType extends AbstractSimpleType 14 | { 15 | const _SUPPRESS_ADDITIONAL_LANGUAGES = 'SUPPRESS_ADDITIONAL_LANGUAGES'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/EPaymentProcessorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class EPaymentProcessorType extends AbstractSimpleType 14 | { 15 | const _RETAIL_SINGLE_POINT_OF_SALE = 'RETAIL_SINGLE_POINT_OF_SALE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/ErrorLabelBehaviorType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class ErrorLabelBehaviorType extends AbstractSimpleType 14 | { 15 | const _PACKAGE_ERROR_LABELS = 'PACKAGE_ERROR_LABELS'; 16 | const _STANDARD = 'STANDARD'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/EtdAttributeType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class EtdAttributeType extends AbstractSimpleType 14 | { 15 | const _POST_SHIPMENT_UPLOAD_REQUESTED = 'POST_SHIPMENT_UPLOAD_REQUESTED'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/FlatbedTrailerOption.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class FlatbedTrailerOption extends AbstractSimpleType 14 | { 15 | const _OVER_DIMENSION = 'OVER_DIMENSION'; 16 | const _TARP = 'TARP'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/FreightChargeBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class FreightChargeBasisType extends AbstractSimpleType 14 | { 15 | const _CWT = 'CWT'; 16 | const _FLAT = 'FLAT'; 17 | const _MINIMUM = 'MINIMUM'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/FreightCollectTermsType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class FreightCollectTermsType extends AbstractSimpleType 14 | { 15 | const _NON_RECOURSE_SHIPPER_SIGNED = 'NON_RECOURSE_SHIPPER_SIGNED'; 16 | const _STANDARD = 'STANDARD'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/FreightOnValueType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class FreightOnValueType extends AbstractSimpleType 14 | { 15 | const _CARRIER_RISK = 'CARRIER_RISK'; 16 | const _OWN_RISK = 'OWN_RISK'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/FreightRateQuoteType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class FreightRateQuoteType extends AbstractSimpleType 14 | { 15 | const _AUTOMATED = 'AUTOMATED'; 16 | const _MANUAL = 'MANUAL'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/FreightShipmentRoleType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class FreightShipmentRoleType extends AbstractSimpleType 14 | { 15 | const _CONSIGNEE = 'CONSIGNEE'; 16 | const _SHIPPER = 'SHIPPER'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/HazardousContainerPackingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class HazardousContainerPackingType extends AbstractSimpleType 14 | { 15 | const _ALL_PACKED_IN_ONE = 'ALL_PACKED_IN_ONE'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/InternalImageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class InternalImageType extends AbstractSimpleType 14 | { 15 | const _LETTER_HEAD = 'LETTER_HEAD'; 16 | const _SIGNATURE = 'SIGNATURE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/LiabilityCoverageType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class LiabilityCoverageType extends AbstractSimpleType 14 | { 15 | const _NEW = 'NEW'; 16 | const _USED_OR_RECONDITIONED = 'USED_OR_RECONDITIONED'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/NotificationContentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class NotificationContentType extends AbstractSimpleType 14 | { 15 | const _SCHEDULE_PICKUP_SUGGESTION = 'SCHEDULE_PICKUP_SUGGESTION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/NotificationFormatType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class NotificationFormatType extends AbstractSimpleType 14 | { 15 | const _HTML = 'HTML'; 16 | const _TEXT = 'TEXT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/NotificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class NotificationType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | const _FAX = 'FAX'; 17 | const _SMS_TEXT_MESSAGE = 'SMS_TEXT_MESSAGE'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/OversizeClassType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class OversizeClassType extends AbstractSimpleType 14 | { 15 | const _OVERSIZE_1 = 'OVERSIZE_1'; 16 | const _OVERSIZE_2 = 'OVERSIZE_2'; 17 | const _OVERSIZE_3 = 'OVERSIZE_3'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PackagePackedByType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PackagePackedByType extends AbstractSimpleType 14 | { 15 | const _CUSTOMER = 'CUSTOMER'; 16 | const _FEDEX_OFFICE = 'FEDEX_OFFICE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PendingShipmentProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PendingShipmentProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _ALLOW_MODIFICATIONS = 'ALLOW_MODIFICATIONS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PendingShipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PendingShipmentType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PhysicalFormType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PhysicalFormType extends AbstractSimpleType 14 | { 15 | const _GAS = 'GAS'; 16 | const _LIQUID = 'LIQUID'; 17 | const _SOLID = 'SOLID'; 18 | const _SPECIAL = 'SPECIAL'; 19 | } 20 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PickupRequestSourceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PickupRequestSourceType extends AbstractSimpleType 14 | { 15 | const _AUTOMATION = 'AUTOMATION'; 16 | const _CUSTOMER_SERVICE = 'CUSTOMER_SERVICE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PickupRequestType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PickupRequestType extends AbstractSimpleType 14 | { 15 | const _FUTURE_DAY = 'FUTURE_DAY'; 16 | const _SAME_DAY = 'SAME_DAY'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/PriorityAlertEnhancementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class PriorityAlertEnhancementType extends AbstractSimpleType 14 | { 15 | const _PRIORITY_ALERT_PLUS = 'PRIORITY_ALERT_PLUS'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/RadioactiveLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class RadioactiveLabelType extends AbstractSimpleType 14 | { 15 | const _III_YELLOW = 'III_YELLOW'; 16 | const _II_YELLOW = 'II_YELLOW'; 17 | const _I_WHITE = 'I_WHITE'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/RateLevelBasisType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class RateLevelBasisType extends AbstractSimpleType 14 | { 15 | const _BUNDLED_RATE = 'BUNDLED_RATE'; 16 | const _INDIVIDUAL_PACKAGE_RATE = 'INDIVIDUAL_PACKAGE_RATE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/RebateType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class RebateType extends AbstractSimpleType 14 | { 15 | const _BONUS = 'BONUS'; 16 | const _EARNED = 'EARNED'; 17 | const _OTHER = 'OTHER'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/RegulatoryLabelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class RegulatoryLabelType extends AbstractSimpleType 14 | { 15 | const _ALCOHOL_SHIPMENT_LABEL = 'ALCOHOL_SHIPMENT_LABEL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/RequirementType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class RequirementType extends AbstractSimpleType 14 | { 15 | const _OPTIONAL = 'OPTIONAL'; 16 | const _PROHIBITED = 'PROHIBITED'; 17 | const _REQUIRED = 'REQUIRED'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/ShipmentDryIceProcessingOptionType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class ShipmentDryIceProcessingOptionType extends AbstractSimpleType 14 | { 15 | const _SHIPMENT_LEVEL_DRY_ICE_ONLY = 'SHIPMENT_LEVEL_DRY_ICE_ONLY'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/ShippingDocumentEMailGroupingType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class ShippingDocumentEMailGroupingType extends AbstractSimpleType 14 | { 15 | const _BY_RECIPIENT = 'BY_RECIPIENT'; 16 | const _NONE = 'NONE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/SmartPostShipmentSpecialServiceType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class SmartPostShipmentSpecialServiceType extends AbstractSimpleType 14 | { 15 | const _USPS_DELIVERY_CONFIRMATION = 'USPS_DELIVERY_CONFIRMATION'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/SpecialEquipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class SpecialEquipmentType extends AbstractSimpleType 14 | { 15 | const _FORK_LIFT = 'FORK_LIFT'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/SurchargeLevelType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class SurchargeLevelType extends AbstractSimpleType 14 | { 15 | const _PACKAGE = 'PACKAGE'; 16 | const _SHIPMENT = 'SHIPMENT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/UploadDocumentIdProducer.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class UploadDocumentIdProducer extends AbstractSimpleType 14 | { 15 | const _CUSTOMER = 'CUSTOMER'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/UploadDocumentProducerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class UploadDocumentProducerType extends AbstractSimpleType 14 | { 15 | const _CUSTOMER = 'CUSTOMER'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/UploadDocumentStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class UploadDocumentStatusType extends AbstractSimpleType 14 | { 15 | const _ERROR = 'ERROR'; 16 | const _FAILURE = 'FAILURE'; 17 | const _SUCCESS = 'SUCCESS'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/UploadImageStatusType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class UploadImageStatusType extends AbstractSimpleType 14 | { 15 | const _ERROR = 'ERROR'; 16 | const _FAILURE = 'FAILURE'; 17 | const _SUCCESS = 'SUCCESS'; 18 | } 19 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/UsmcaImporterSpecificationType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class UsmcaImporterSpecificationType extends AbstractSimpleType 14 | { 15 | const _UNKNOWN = 'UNKNOWN'; 16 | const _VARIOUS = 'VARIOUS'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/VolumeUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class VolumeUnits extends AbstractSimpleType 14 | { 15 | const _CUBIC_FT = 'CUBIC_FT'; 16 | const _CUBIC_M = 'CUBIC_M'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/WeightSource.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class WeightSource extends AbstractSimpleType 14 | { 15 | const _MANUAL = 'MANUAL'; 16 | const _SCALE = 'SCALE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/UploadDocumentService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Upload Document Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ValidationAvailabilityAndCommitmentService/SimpleType/BrokerType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Validation Availability And Commitment Service Service 12 | */ 13 | class BrokerType extends AbstractSimpleType 14 | { 15 | const _EXPORT = 'EXPORT'; 16 | const _IMPORT = 'IMPORT'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ValidationAvailabilityAndCommitmentService/SimpleType/Gender.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Validation Availability And Commitment Service Service 12 | */ 13 | class Gender extends AbstractSimpleType 14 | { 15 | const _FEMALE = 'FEMALE'; 16 | const _MALE = 'MALE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ValidationAvailabilityAndCommitmentService/SimpleType/LinearUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Validation Availability And Commitment Service Service 12 | */ 13 | class LinearUnits extends AbstractSimpleType 14 | { 15 | const _CM = 'CM'; 16 | const _IN = 'IN'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ValidationAvailabilityAndCommitmentService/SimpleType/PendingShipmentType.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Validation Availability And Commitment Service Service 12 | */ 13 | class PendingShipmentType extends AbstractSimpleType 14 | { 15 | const _EMAIL = 'EMAIL'; 16 | } 17 | -------------------------------------------------------------------------------- /src/FedEx/ValidationAvailabilityAndCommitmentService/SimpleType/WeightSource.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Validation Availability And Commitment Service Service 12 | */ 13 | class WeightSource extends AbstractSimpleType 14 | { 15 | const _MANUAL = 'MANUAL'; 16 | const _SCALE = 'SCALE'; 17 | } 18 | -------------------------------------------------------------------------------- /src/FedEx/ValidationAvailabilityAndCommitmentService/SimpleType/WeightUnits.php: -------------------------------------------------------------------------------- 1 | 10 | * @package PHP FedEx API wrapper 11 | * @subpackage Validation Availability And Commitment Service Service 12 | */ 13 | class WeightUnits extends AbstractSimpleType 14 | { 15 | const _KG = 'KG'; 16 | const _LB = 'LB'; 17 | } 18 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | run(); 9 | --------------------------------------------------------------------------------