├── .swagger-codegen └── VERSION ├── vendor ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── complexity │ │ ├── .psalm │ │ │ └── baseline.xml │ │ └── src │ │ │ └── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── .psalm │ │ │ └── baseline.xml │ │ └── src │ │ │ └── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── cli-parser │ │ ├── infection.json │ │ └── src │ │ │ └── exceptions │ │ │ └── Exception.php │ ├── object-reflector │ │ ├── .psalm │ │ │ └── baseline.xml │ │ └── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── object-enumerator │ │ ├── .psalm │ │ │ └── baseline.xml │ │ └── src │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── diff │ │ └── src │ │ │ └── Exception │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── type │ │ └── src │ │ │ └── exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── code-unit │ │ └── src │ │ │ └── exceptions │ │ │ └── Exception.php │ ├── comparator │ │ └── src │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── global-state │ │ └── src │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ └── recursion-context │ │ └── src │ │ └── Exception.php ├── psr │ ├── event-dispatcher │ │ ├── .gitignore │ │ ├── README.md │ │ └── .editorconfig │ ├── container │ │ ├── .gitignore │ │ └── src │ │ │ ├── NotFoundExceptionInterface.php │ │ │ └── ContainerExceptionInterface.php │ ├── log │ │ └── src │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareTrait.php │ │ │ └── AbstractLogger.php │ ├── http-client │ │ └── src │ │ │ └── ClientExceptionInterface.php │ └── http-factory │ │ └── src │ │ └── UriFactoryInterface.php ├── phpunit │ ├── php-code-coverage │ │ └── src │ │ │ ├── Report │ │ │ └── Html │ │ │ │ └── Renderer │ │ │ │ └── Template │ │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ └── octicons.css │ │ │ │ ├── lines.html.dist │ │ │ │ ├── line.html.dist │ │ │ │ ├── icons │ │ │ │ ├── file-directory.svg │ │ │ │ └── file-code.svg │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ └── coverage_bar_branch.html.dist │ │ │ └── Exception │ │ │ └── Exception.php │ ├── phpunit │ │ └── src │ │ │ └── Framework │ │ │ ├── MockObject │ │ │ └── Generator │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── wsdl_method.tpl │ │ │ │ ├── intersection.tpl │ │ │ │ ├── trait_class.tpl │ │ │ │ ├── mocked_class.tpl │ │ │ │ ├── wsdl_class.tpl │ │ │ │ └── mocked_static_method.tpl │ │ │ └── Error │ │ │ ├── Notice.php │ │ │ ├── Warning.php │ │ │ └── Deprecated.php │ ├── php-timer │ │ ├── .psalm │ │ │ └── baseline.xml │ │ └── src │ │ │ └── exceptions │ │ │ └── Exception.php │ ├── php-text-template │ │ ├── .psalm │ │ │ └── baseline.xml │ │ ├── src │ │ │ └── exceptions │ │ │ │ └── Exception.php │ │ └── README.md │ ├── php-file-iterator │ │ └── .psalm │ │ │ └── baseline.xml │ └── php-invoker │ │ └── src │ │ └── exceptions │ │ ├── Exception.php │ │ └── TimeoutException.php ├── doctrine │ └── instantiator │ │ ├── docs │ │ └── en │ │ │ └── sidebar.rst │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ └── Exception │ │ └── ExceptionInterface.php ├── clue │ └── ndjson-react │ │ └── .github │ │ └── FUNDING.yml ├── phar-io │ ├── manifest │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── tools │ │ │ └── php-cs-fixer.d │ │ │ │ └── header.txt │ │ └── src │ │ │ └── values │ │ │ └── Requirement.php │ └── version │ │ └── src │ │ └── exceptions │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ └── InvalidVersionException.php ├── fidry │ └── cpu-core-counter │ │ └── .envrc ├── friendsofphp │ └── php-cs-fixer │ │ ├── logo.png │ │ ├── logo.md │ │ └── ci-integration.sh ├── react │ ├── dns │ │ └── src │ │ │ ├── BadServerException.php │ │ │ ├── Query │ │ │ ├── TimeoutException.php │ │ │ └── CancellationException.php │ │ │ └── RecordNotFoundException.php │ └── promise │ │ └── src │ │ ├── functions_include.php │ │ └── Exception │ │ └── LengthException.php ├── symfony │ ├── console │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── service-contracts │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── deprecation-contracts │ │ └── CHANGELOG.md │ ├── http-client-contracts │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── event-dispatcher-contracts │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── polyfill-ctype │ │ └── README.md │ ├── polyfill-php80 │ │ └── Resources │ │ │ └── stubs │ │ │ ├── ValueError.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── PhpToken.php │ ├── string │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── InvalidArgumentException.php │ └── polyfill-mbstring │ │ └── README.md ├── theseer │ └── tokenizer │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php ├── nikic │ └── php-parser │ │ └── lib │ │ └── PhpParser │ │ ├── Node │ │ ├── Scalar.php │ │ ├── Expr.php │ │ ├── Stmt.php │ │ ├── Scalar │ │ │ ├── LNumber.php │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ └── MagicConst │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Line.php │ │ │ │ ├── Class_.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── Method.php │ │ │ │ ├── Property.php │ │ │ │ ├── Function_.php │ │ │ │ └── Namespace_.php │ │ ├── Expr │ │ │ ├── Cast │ │ │ │ ├── Int_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Array_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ ├── Unset_.php │ │ │ │ └── Double.php │ │ │ ├── ArrayItem.php │ │ │ ├── AssignOp │ │ │ │ ├── Div.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Pow.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── ClosureUse.php │ │ │ └── BinaryOp │ │ │ │ ├── Div.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Pow.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Greater.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Identical.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── Spaceship.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ └── SmallerOrEqual.php │ │ ├── Stmt │ │ │ ├── StaticVar.php │ │ │ ├── UseUse.php │ │ │ ├── DeclareDeclare.php │ │ │ ├── PropertyProperty.php │ │ │ ├── TraitUseAdaptation.php │ │ │ └── Nop.php │ │ └── ComplexType.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── Builder.php │ │ ├── ErrorHandler.php │ │ └── ErrorHandler │ │ └── Throwing.php ├── guzzlehttp │ ├── guzzle │ │ └── src │ │ │ ├── Exception │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── GuzzleException.php │ │ │ ├── ClientException.php │ │ │ └── ServerException.php │ │ │ ├── functions_include.php │ │ │ └── BodySummarizerInterface.php │ ├── promises │ │ └── src │ │ │ ├── CancellationException.php │ │ │ └── PromisorInterface.php │ └── psr7 │ │ └── src │ │ └── Exception │ │ └── MalformedUriException.php ├── composer │ └── autoload_namespaces.php ├── myclabs │ └── deep-copy │ │ └── src │ │ └── DeepCopy │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── TypeFilter │ │ ├── Spl │ │ │ └── SplDoublyLinkedList.php │ │ ├── TypeFilter.php │ │ └── ShallowCopyFilter.php │ │ ├── Matcher │ │ └── Matcher.php │ │ ├── Filter │ │ ├── KeepFilter.php │ │ └── Filter.php │ │ └── deep_copy.php └── evenement │ └── evenement │ ├── .gitattributes │ └── src │ └── EventEmitter.php ├── Locator ├── .travis.yml └── docs │ └── Model │ ├── AvailableLocationAttributesOptionCode.md │ ├── ErrorResponse.md │ ├── LOCATORRequestWrapper.md │ ├── LOCATORResponseWrapper.md │ ├── LocatorRequestUnitOfMeasurement.md │ ├── ErrorMessage.md │ ├── ExcludeFromResultPostalCodeList.md │ ├── SearchOptionRelation.md │ ├── CommonErrorResponse.md │ ├── PostalCodeListPostalCode.md │ ├── PrivateNetworkListPrivateNetwork.md │ └── ServiceSearchServiceOptionCode.md ├── Paperless ├── .travis.yml └── docs │ └── Model │ ├── DeleteResponse.md │ ├── ErrorResponse.md │ ├── ErrorMessage.md │ ├── PAPERLESSDOCUMENTDeleteRequestWrapper.md │ ├── PAPERLESSDOCUMENTUploadRequestWrapper.md │ ├── PAPERLESSDOCUMENTDeleteResponseWrapper.md │ ├── PAPERLESSDOCUMENTUploadResponseWrapper.md │ ├── ResponseAlert.md │ ├── ResponseTransactionReference.md │ ├── CommonErrorResponse.md │ └── PushToImageRepositoryRequestFormsHistoryDocumentID.md ├── Pickup ├── .travis.yml └── docs │ └── Model │ ├── OneOfPickupRateResponseResponseAlert.md │ ├── OneOfDropOffFacilitiesAddressAddressLine.md │ ├── OneOfPickupPendingStatusResponsePendingStatus.md │ ├── OneOfServiceCenterLocationDropOffFacilitiesLocalizedInstruction.md │ ├── ErrorResponse.md │ ├── PICKUPRequestWrapper.md │ ├── ErrorMessage.md │ ├── PICKUPResponseWrapper.md │ ├── PickupAddressPhone.md │ ├── OneOfPickupGetServiceCenterFacilitiesResponseServiceCenterLocationDropOffFacilities.md │ ├── PICKUPCancelRequestWrapper.md │ ├── DropOffFacilitiesFacilityTime.md │ ├── PICKUPCancelResponseWrapper.md │ ├── PICKUPCreationRequestWrapper.md │ ├── PICKUPCreationResponseWrapper.md │ ├── ResponseAlert.md │ ├── RequestTransactionReference.md │ ├── ResponseTransactionReference.md │ ├── CommonErrorResponse.md │ ├── PICKUPPendingRequestWrapper.md │ ├── PICKUPPendingResponseWrapper.md │ ├── PickupCancelRequestRequest.md │ ├── ShipmentDetailPalletInformation.md │ ├── DimensionsUnitOfMeasurement.md │ ├── PickupFacilitiesFacilityTime.md │ └── PickupPendingStatusRequestRequest.md ├── Rating ├── .travis.yml └── docs │ └── Model │ ├── AccessorialCode.md │ ├── RatedPackageWeight.md │ ├── ShipmentNumOfPieces.md │ ├── AccessorialDescription.md │ ├── TotalChargeCurrencyCode.md │ ├── TotalChargeMonetaryValue.md │ ├── ShipmentDocumentsOnlyIndicator.md │ ├── RATERequestWrapper.md │ ├── RATEResponseWrapper.md │ ├── ErrorResponse.md │ ├── ErrorMessage.md │ ├── RatedShipmentService.md │ ├── ResponseAlert.md │ ├── CommonErrorResponse.md │ ├── ResponseTransactionReference.md │ ├── PackageUPSPremier.md │ ├── RatedPackageSimpleRate.md │ ├── ShipmentChargeBillShipper.md │ ├── ShipmentServiceOptionsCODCODAmount.md │ └── RatedPackageAccessorial.md ├── Shipping ├── .travis.yml └── docs │ └── Model │ ├── TaxIDTypeCode.md │ ├── DryIceWeightWeight.md │ ├── TaxIDTypeDescription.md │ ├── GlobalTaxInformationShipperTypeValue.md │ ├── OneOfLabelRecoveryResponseTrackingCandidate.md │ ├── GlobalTaxInformationOriginCountryShipmentValue.md │ ├── GlobalTaxInformationDestinationCountryShipmentValue.md │ ├── LabelResultsForm.md │ ├── EEIFilingOptionUPSFiled.md │ ├── ErrorResponse.md │ ├── SHIPRequestWrapper.md │ ├── SHIPResponseWrapper.md │ ├── ErrorMessage.md │ ├── LabelRecoveryResponseForm.md │ ├── ShipmentResultsCODTurnInPage.md │ ├── ShipmentResultsHighValueReport.md │ ├── VoidShipmentResponseSummaryResult.md │ ├── CODCODAmount.md │ ├── InternationalFormsUserCreatedForm.md │ ├── LabelRecoveryResponseCODTurnInPage.md │ ├── ShipFromPhone.md │ ├── VOIDSHIPMENTRequestWrapper.md │ ├── LABELRECOVERYRequestWrapper.md │ ├── LabelRecoveryResponseHighValueReport.md │ ├── SoldToPhone.md │ ├── VOIDSHIPMENTResponseWrapper.md │ ├── LABELRECOVERYResponseWrapper.md │ ├── ResponseAlert.md │ ├── LRRequestTransactionReference.md │ ├── ProductPackingListInfo.md │ ├── RequestTransactionReference.md │ ├── ResponseTransactionReference.md │ ├── CommonErrorResponse.md │ ├── LRResponseTransactionReference.md │ ├── PackageResultsSimpleRate.md │ ├── VoidRequestTransactionReference.md │ ├── NotificationTextMessage.md │ ├── NotificationVoiceMessage.md │ ├── VoidResponseTransactionReference.md │ └── ShipmentRequestReceiptSpecification.md ├── Tracking ├── .travis.yml └── docs │ └── Model │ ├── InquireNumbers.md │ ├── AccessPointInformation.md │ ├── Error.md │ ├── SubMilestone.md │ ├── ErrorResponse.md │ ├── Warning.md │ ├── Response.md │ ├── TrackResponse.md │ ├── TrackApiResponse.md │ └── Location.md ├── DangerousGoods ├── .travis.yml └── docs │ └── Model │ ├── AcceptanceAuditPreCheckResponseService.md │ ├── ErrorMessage.md │ ├── ErrorResponse.md │ ├── ShipmentService.md │ ├── ResponseAlert.md │ ├── RequestTransactionReference.md │ ├── ResponseTransactionReference.md │ └── ChemicalDataProperShippingNameDetail.md ├── GlobalCheckout ├── .travis.yml └── docs │ └── Model │ ├── BSISV1TotalResponse.md │ ├── BSISV1ErrorResponseHeaders.md │ ├── BSISV1ErrorResponseResponse.md │ └── BSISV1ErrorResponse.md ├── LandedCost ├── .travis.yml └── docs │ └── Model │ ├── ErrorResponse.md │ ├── ErrorMessage.md │ ├── LandedCostResponse.md │ └── CommonErrorResponse.md ├── OAuthAuthCode ├── .travis.yml └── docs │ └── Model │ ├── Errors.md │ ├── ErrorResponseWrapper.md │ └── TokenErrorResponse.md ├── QuantumView ├── .travis.yml └── docs │ └── Model │ ├── CODCODCode.md │ ├── ErrorErrorDigest.md │ ├── PackageLargePackage.md │ ├── PackageTrackingNumber.md │ ├── DimensionalWeightWeight.md │ ├── ManifestCustomsValue.md │ ├── DeliveryCOD.md │ ├── PackagePackageWeight.md │ ├── ErrorResponse.md │ ├── ErrorMessage.md │ ├── QUANTUMVIEWRequestWrapper.md │ ├── QUANTUMVIEWResponseWrapper.md │ ├── RequestTransactionReference.md │ ├── CommonErrorResponse.md │ ├── GenericService.md │ └── OriginActivityLocation.md ├── TimeInTransit ├── .travis.yml └── docs │ └── Model │ ├── OriginPickList.md │ ├── DestinationPickList.md │ ├── ErrorResponse.md │ └── Errors.md ├── UPSTrackAlert ├── .travis.yml └── docs │ └── Model │ ├── InvalidTrackingNumbers.md │ ├── Response.md │ └── ErrorMessage.md ├── AddressValidation ├── .travis.yml └── docs │ └── Model │ ├── XAVRequestWrapper.md │ ├── XAVResponseWrapper.md │ ├── ErrorMessage.md │ ├── ErrorResponse.md │ ├── RequestTransactionReference.md │ ├── ResponseAlert.md │ └── ResponseTransactionReference.md ├── DeliveryDefense ├── .travis.yml └── docs │ └── Model │ ├── SuccessStatus.md │ └── Error.md ├── DeliveryIntercept ├── .travis.yml └── docs │ └── Model │ ├── ErrorResponseHeaders.md │ ├── MyChoiceWillCallRequest.md │ ├── MyChoiceWillCallResponse.md │ ├── MyChoiceCancelExistingRequest.md │ ├── MyChoiceReturnToSenderRequest.md │ ├── MyChoiceRedirectChargesRequest.md │ ├── MyChoiceReturnToSenderResponse.md │ ├── MyChoiceRescheduleDeliveryRequest.md │ ├── MyChoiceRescheduleDeliveryResponse.md │ ├── MyChoiceDeliverToAnotherAddressRequest.md │ ├── MyChoiceDeliverToAnotherAddressResponse.md │ └── ErrorResponse.md ├── PreNotification ├── .travis.yml └── docs │ └── Model │ ├── ErrorMessage.md │ ├── ErrorResponse.md │ ├── ResponseAlert.md │ ├── RequestTransactionReference.md │ ├── ResponseTransactionReference.md │ ├── PreNotificationResponse.md │ └── PRENOTIFICATIONRequestWrapper.md ├── OAuthClientCredentials ├── .travis.yml └── docs │ └── Model │ ├── Errors.md │ ├── OauthTokenBody.md │ ├── ErrorResponseWrapper.md │ └── TokenErrorResponse.md ├── UPSTrackAlertEnhanced ├── .travis.yml └── docs │ └── Model │ ├── InvalidTrackingNumbers.md │ ├── Response.md │ └── ErrorMessage.md └── WorldEaseShipmentManagement ├── .travis.yml └── docs └── Model ├── CustomTransactionId.md ├── CustomTransactionSrc.md └── ErrorResponse.md /.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.71 -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.php_cs.cache 2 | /.idea 3 | -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/docs/en/sidebar.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :depth: 3 3 | 4 | index 5 | -------------------------------------------------------------------------------- /vendor/clue/ndjson-react/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: clue 2 | custom: https://clue.engineering/support 3 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [theseer] 4 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /.php_cs.dist export-ignore 3 | 4 | *.php diff=php 5 | -------------------------------------------------------------------------------- /vendor/fidry/cpu-core-counter/.envrc: -------------------------------------------------------------------------------- 1 | use nix --packages \ 2 | gnumake \ 3 | yamllint 4 | 5 | source_env_if_exists .envrc.local 6 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abantecart/ups-php/HEAD/vendor/friendsofphp/php-cs-fixer/logo.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/react/dns/src/BadServerException.php: -------------------------------------------------------------------------------- 1 | . 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/react/dns/src/Query/TimeoutException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/intersection.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | interface {intersection} extends {interfaces} 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /vendor/psr/log/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{lines}} 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php: -------------------------------------------------------------------------------- 1 | {{lineNumber}}{{lineContent}} 2 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | current 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | is_object($object) 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/ErrorErrorDigest.md: -------------------------------------------------------------------------------- 1 | # ErrorErrorDigest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Rating/docs/Model/RatedPackageWeight.md: -------------------------------------------------------------------------------- 1 | # RatedPackageWeight 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Rating/docs/Model/ShipmentNumOfPieces.md: -------------------------------------------------------------------------------- 1 | # ShipmentNumOfPieces 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Shipping/docs/Model/DryIceWeightWeight.md: -------------------------------------------------------------------------------- 1 | # DryIceWeightWeight 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /TimeInTransit/docs/Model/OriginPickList.md: -------------------------------------------------------------------------------- 1 | # OriginPickList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann and contributors 4 | 5 | For the full copyright and license information, please view the LICENSE 6 | file that was distributed with this source code. 7 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/MyChoiceWillCallRequest.md: -------------------------------------------------------------------------------- 1 | # MyChoiceWillCallRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/MyChoiceWillCallResponse.md: -------------------------------------------------------------------------------- 1 | # MyChoiceWillCallResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /UPSTrackAlertEnhanced/docs/Model/InvalidTrackingNumbers.md: -------------------------------------------------------------------------------- 1 | # InvalidTrackingNumbers 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /WorldEaseShipmentManagement/docs/Model/CustomTransactionId.md: -------------------------------------------------------------------------------- 1 | # CustomTransactionId 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /GlobalCheckout/docs/Model/BSISV1ErrorResponseHeaders.md: -------------------------------------------------------------------------------- 1 | # BSISV1ErrorResponseHeaders 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Rating/docs/Model/ShipmentDocumentsOnlyIndicator.md: -------------------------------------------------------------------------------- 1 | # ShipmentDocumentsOnlyIndicator 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /WorldEaseShipmentManagement/docs/Model/CustomTransactionSrc.md: -------------------------------------------------------------------------------- 1 | # CustomTransactionSrc 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 | 6 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/MyChoiceRedirectChargesRequest.md: -------------------------------------------------------------------------------- 1 | # MyChoiceRedirectChargesRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/MyChoiceReturnToSenderResponse.md: -------------------------------------------------------------------------------- 1 | # MyChoiceReturnToSenderResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Pickup/docs/Model/OneOfPickupRateResponseResponseAlert.md: -------------------------------------------------------------------------------- 1 | # OneOfPickupRateResponseResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Shipping/docs/Model/GlobalTaxInformationShipperTypeValue.md: -------------------------------------------------------------------------------- 1 | # GlobalTaxInformationShipperTypeValue 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar_branch.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/MyChoiceRescheduleDeliveryRequest.md: -------------------------------------------------------------------------------- 1 | # MyChoiceRescheduleDeliveryRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/MyChoiceRescheduleDeliveryResponse.md: -------------------------------------------------------------------------------- 1 | # MyChoiceRescheduleDeliveryResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Locator/docs/Model/AvailableLocationAttributesOptionCode.md: -------------------------------------------------------------------------------- 1 | # AvailableLocationAttributesOptionCode 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/ErrorHandler.php: -------------------------------------------------------------------------------- 1 | '; 10 | } 11 | 12 | public function getType(): string { 13 | return 'Expr_BinaryOp_Greater'; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php: -------------------------------------------------------------------------------- 1 | '; 10 | } 11 | 12 | public function getType(): string { 13 | return 'Expr_BinaryOp_Spaceship'; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | !is_array($variable) && !is_object($variable) 6 | is_object($variable) 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LabelResultsForm.md: -------------------------------------------------------------------------------- 1 | # LabelResultsForm 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | [**\UPS\Shipping\Shipping\LRFormImage**](LRFormImage.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php: -------------------------------------------------------------------------------- 1 | >'; 10 | } 11 | 12 | public function getType(): string { 13 | return 'Expr_BinaryOp_ShiftRight'; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80000) { 13 | class ValueError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Pickup/docs/Model/OneOfServiceCenterLocationDropOffFacilitiesLocalizedInstruction.md: -------------------------------------------------------------------------------- 1 | # OneOfServiceCenterLocationDropOffFacilitiesLocalizedInstruction 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Rating/docs/Model/RATERequestWrapper.md: -------------------------------------------------------------------------------- 1 | # RATERequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **rate_request** | [**\UPS\Rating\Rating\RateRequest**](RateRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Tracking/docs/Model/Response.md: -------------------------------------------------------------------------------- 1 | # Response 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Tracking\Tracking\ErrorResponse**](ErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Tracking/docs/Model/TrackResponse.md: -------------------------------------------------------------------------------- 1 | # TrackResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **shipment** | [**\UPS\Tracking\Tracking\Shipment[]**](Shipment.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php: -------------------------------------------------------------------------------- 1 | ='; 10 | } 11 | 12 | public function getType(): string { 13 | return 'Expr_BinaryOp_GreaterOrEqual'; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/ManifestCustomsValue.md: -------------------------------------------------------------------------------- 1 | # ManifestCustomsValue 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **monetary_value** | **string** | The shipment's customs value amount. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/EEIFilingOptionUPSFiled.md: -------------------------------------------------------------------------------- 1 | # EEIFilingOptionUPSFiled 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **poa** | [**\UPS\Shipping\Shipping\UPSFiledPOA**](UPSFiledPOA.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /TimeInTransit/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\TimeInTransit\TimeInTransit\Errors[]**](Errors.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80000) { 13 | class UnhandledMatchError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Locator/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Locator\Locator\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /OAuthAuthCode/docs/Model/Errors.md: -------------------------------------------------------------------------------- 1 | # Errors 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Error code | [optional] 7 | **message** | **string** | Error message | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Pickup/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Pickup\Pickup\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/DeliveryCOD.md: -------------------------------------------------------------------------------- 1 | # DeliveryCOD 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **cod_amount** | [**\UPS\QuantumView\QuantumView\CODCODAmount**](CODCODAmount.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Rating\Rating\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /TimeInTransit/docs/Model/Errors.md: -------------------------------------------------------------------------------- 1 | # Errors 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Error code | [optional] 7 | **message** | **string** | Error message | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /UPSTrackAlertEnhanced/docs/Model/Response.md: -------------------------------------------------------------------------------- 1 | # Response 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [****](.md) | The error response containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /WorldEaseShipmentManagement/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [****](.md) | error payload - array containing one or more Errors | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Diff; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/type/src/exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Type; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/AcceptanceAuditPreCheckResponseService.md: -------------------------------------------------------------------------------- 1 | # AcceptanceAuditPreCheckResponseService 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | UPS service type code. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /DeliveryDefense/docs/Model/SuccessStatus.md: -------------------------------------------------------------------------------- 1 | # SuccessStatus 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **message** | [****](.md) | Indicates request information was accepted and processed | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/LOCATORRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # LOCATORRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **locator_request** | [**\UPS\Locator\Locator\LocatorRequest**](LocatorRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/DeleteResponse.md: -------------------------------------------------------------------------------- 1 | # DeleteResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Paperless\Paperless\DeleteResponseResponse**](DeleteResponseResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Shipping\Shipping\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/SHIPRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # SHIPRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **shipment_request** | [**\UPS\Shipping\Shipping\ShipmentRequest**](ShipmentRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Tracking/docs/Model/TrackApiResponse.md: -------------------------------------------------------------------------------- 1 | # TrackApiResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **track_response** | [**\UPS\Tracking\Tracking\TrackResponse**](TrackResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/evenement/evenement/src/EventEmitter.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Evenement; 13 | 14 | class EventEmitter implements EventEmitterInterface 15 | { 16 | use EventEmitterTrait; 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Notice.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | /** 13 | * @internal 14 | */ 15 | final class Notice extends Error 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Warning.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | /** 13 | * @internal 14 | */ 15 | final class Warning extends Error 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /LandedCost/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\LandedCost\LandedCost\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/LOCATORResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # LOCATORResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **locator_response** | [**\UPS\Locator\Locator\LocatorResponse**](LocatorResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/LocatorRequestUnitOfMeasurement.md: -------------------------------------------------------------------------------- 1 | # LocatorRequestUnitOfMeasurement 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Valid values are: - MI-Miles - KM-Kilometers | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /OAuthAuthCode/docs/Model/ErrorResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # ErrorResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\OAuthAuthCode\OAuthAuthCode\Errors[]**](Errors.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /OAuthClientCredentials/docs/Model/Errors.md: -------------------------------------------------------------------------------- 1 | # Errors 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Error code | [optional] 7 | **message** | **string** | Error message | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Paperless/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\Paperless\Paperless\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_rate_request** | [**\UPS\Pickup\Pickup\PickupRateRequest**](PickupRateRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/PackagePackageWeight.md: -------------------------------------------------------------------------------- 1 | # PackagePackageWeight 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **weight** | **string** | Package weight. Set to 0 for package type of letters or envelops. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/SHIPResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # SHIPResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **shipment_response** | [**\UPS\Shipping\Shipping\ShipmentResponse**](ShipmentResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Timer; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/XAVRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # XAVRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **xav_request** | [**\UPS\AddressValidation\AddressValidation\XAVRequest**](XAVRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /GlobalCheckout/docs/Model/BSISV1ErrorResponseResponse.md: -------------------------------------------------------------------------------- 1 | # BSISV1ErrorResponseResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [****](.md) | error payload - array containing one or more Errors. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /OAuthClientCredentials/docs/Model/OauthTokenBody.md: -------------------------------------------------------------------------------- 1 | # OauthTokenBody 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **grant_type** | **string** | Valid values: client_credentials | [default to 'client_credentials'] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_rate_response** | [**\UPS\Pickup\Pickup\PickupRateResponse**](PickupRateResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PickupAddressPhone.md: -------------------------------------------------------------------------------- 1 | # PickupAddressPhone 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **number** | **string** | Phone number | 7 | **extension** | **string** | Phone extension | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\QuantumView\QuantumView\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Invoker; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/Error/Deprecated.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace PHPUnit\Framework\Error; 11 | 12 | /** 13 | * @internal 14 | */ 15 | final class Deprecated extends Error 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerAwareTrait.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeUnit; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/XAVResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # XAVResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **xav_response** | [**\UPS\AddressValidation\AddressValidation\XAVResponse**](XAVResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /LandedCost/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Paperless/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LabelRecoveryResponseForm.md: -------------------------------------------------------------------------------- 1 | # LabelRecoveryResponseForm 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | [**\UPS\Shipping\Shipping\LabelRecoveryFormImage**](LabelRecoveryFormImage.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ShipmentResultsCODTurnInPage.md: -------------------------------------------------------------------------------- 1 | # ShipmentResultsCODTurnInPage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | [**\UPS\Shipping\Shipping\CODTurnInPageImage**](CODTurnInPageImage.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/sebastian/cli-parser/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CliParser; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Comparator; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/complexity/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Complexity; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/type/src/exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Type; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/string/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\DangerousGoods\DangerousGoods\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /DeliveryIntercept/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\DeliveryIntercept\DeliveryIntercept\ErrorResponseResponse**](ErrorResponseResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /LandedCost/docs/Model/LandedCostResponse.md: -------------------------------------------------------------------------------- 1 | # LandedCostResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **shipment** | [**\UPS\LandedCost\LandedCost\LandedCostResponseShipment**](LandedCostResponseShipment.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/OneOfPickupGetServiceCenterFacilitiesResponseServiceCenterLocationDropOffFacilities.md: -------------------------------------------------------------------------------- 1 | # OneOfPickupGetServiceCenterFacilitiesResponseServiceCenterLocationDropOffFacilities 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | 7 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 8 | 9 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPCancelRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPCancelRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_cancel_request** | [**\UPS\Pickup\Pickup\PickupCancelRequest**](PickupCancelRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The error code. | [optional] 7 | **message** | **string** | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\PreNotification\PreNotification\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ShipmentResultsHighValueReport.md: -------------------------------------------------------------------------------- 1 | # ShipmentResultsHighValueReport 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | [**\UPS\Shipping\Shipping\HighValueReportImage**](HighValueReportImage.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /UPSTrackAlert/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | [****](.md) | The error code. | [optional] 7 | **message** | [****](.md) | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\GlobalState; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/lines-of-code/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\LinesOfCode; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\ObjectReflector; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\AddressValidation\AddressValidation\CommonErrorResponse**](CommonErrorResponse.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /OAuthAuthCode/docs/Model/TokenErrorResponse.md: -------------------------------------------------------------------------------- 1 | # TokenErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\OAuthAuthCode\OAuthAuthCode\ErrorResponseWrapper**](ErrorResponseWrapper.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/DropOffFacilitiesFacilityTime.md: -------------------------------------------------------------------------------- 1 | # DropOffFacilitiesFacilityTime 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **day_of_week** | [**\UPS\Pickup\Pickup\FacilityTimeDayOfWeek[]**](FacilityTimeDayOfWeek.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPCancelResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPCancelResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_cancel_response** | [**\UPS\Pickup\Pickup\PickupCancelResponse**](PickupCancelResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/VoidShipmentResponseSummaryResult.md: -------------------------------------------------------------------------------- 1 | # VoidShipmentResponseSummaryResult 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **status** | [**\UPS\Shipping\Shipping\SummaryResultStatus**](SummaryResultStatus.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /UPSTrackAlertEnhanced/docs/Model/ErrorMessage.md: -------------------------------------------------------------------------------- 1 | # ErrorMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | [****](.md) | The error code. | [optional] 7 | **message** | [****](.md) | The error message. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Exception/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\CodeCoverage; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/src/exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Template; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\ObjectEnumerator; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\RecursionContext; 11 | 12 | use Throwable; 13 | 14 | interface Exception extends Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /OAuthClientCredentials/docs/Model/ErrorResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # ErrorResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\OAuthClientCredentials\OAuthClientCredentials\Errors[]**](Errors.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPCreationRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPCreationRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_creation_request** | [**\UPS\Pickup\Pickup\PickupCreationRequest**](PickupCreationRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/QUANTUMVIEWRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # QUANTUMVIEWRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **quantum_view_request** | [**\UPS\QuantumView\QuantumView\QuantumViewRequest**](QuantumViewRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/CODCODAmount.md: -------------------------------------------------------------------------------- 1 | # CODCODAmount 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **currency_code** | **string** | COD amount currency code type. | 7 | **monetary_value** | **string** | COD Amount monetary value. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/InternationalFormsUserCreatedForm.md: -------------------------------------------------------------------------------- 1 | # InternationalFormsUserCreatedForm 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **document_id** | **string[]** | DocumentID represents a document uploaded to Forms History. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LabelRecoveryResponseCODTurnInPage.md: -------------------------------------------------------------------------------- 1 | # LabelRecoveryResponseCODTurnInPage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | [**\UPS\Shipping\Shipping\LRCODTurnInPageImage**](LRCODTurnInPageImage.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ShipFromPhone.md: -------------------------------------------------------------------------------- 1 | # ShipFromPhone 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **number** | **string** | The Ship from phone Number. | 7 | **extension** | **string** | The Ship from phone extension. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/VOIDSHIPMENTRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # VOIDSHIPMENTRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **void_shipment_request** | [**\UPS\Shipping\Shipping\VoidShipmentRequest**](VoidShipmentRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) { 13 | class PhpToken extends Symfony\Polyfill\Php80\PhpToken 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/ShipmentService.md: -------------------------------------------------------------------------------- 1 | # ShipmentService 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | UPS service type code. | 7 | **description** | **string** | UPS service type description. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /GlobalCheckout/docs/Model/BSISV1ErrorResponse.md: -------------------------------------------------------------------------------- 1 | # BSISV1ErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\GlobalCheckout\GlobalCheckout\BSISV1ErrorResponseResponse**](BSISV1ErrorResponseResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/ExcludeFromResultPostalCodeList.md: -------------------------------------------------------------------------------- 1 | # ExcludeFromResultPostalCodeList 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **postal_code** | [**\UPS\Locator\Locator\PostalCodeListPostalCode[]**](PostalCodeListPostalCode.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/SearchOptionRelation.md: -------------------------------------------------------------------------------- 1 | # SearchOptionRelation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Applicable for Additional Services and Program Types. Valid values: - 01 - And (Default) - 02 - Or | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/PAPERLESSDOCUMENTDeleteRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PAPERLESSDOCUMENTDeleteRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **delete_request** | [**\UPS\Paperless\Paperless\DeleteRequest**](DeleteRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/PAPERLESSDOCUMENTUploadRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PAPERLESSDOCUMENTUploadRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **upload_request** | [**\UPS\Paperless\Paperless\UploadRequest**](UploadRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPCreationResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPCreationResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_creation_response** | [**\UPS\Pickup\Pickup\PickupCreationResponse**](PickupCreationResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/QUANTUMVIEWResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # QUANTUMVIEWResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **quantum_view_response** | [**\UPS\QuantumView\QuantumView\QuantumViewResponse**](QuantumViewResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/RatedShipmentService.md: -------------------------------------------------------------------------------- 1 | # RatedShipmentService 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | The UPS service code. | 7 | **description** | **string** | The UPS service Description. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Rating/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LABELRECOVERYRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # LABELRECOVERYRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **label_recovery_request** | [**\UPS\Shipping\Shipping\LabelRecoveryRequest**](LabelRecoveryRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LabelRecoveryResponseHighValueReport.md: -------------------------------------------------------------------------------- 1 | # LabelRecoveryResponseHighValueReport 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image** | [**\UPS\Shipping\Shipping\HighValueReportImage**](HighValueReportImage.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/SoldToPhone.md: -------------------------------------------------------------------------------- 1 | # SoldToPhone 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **number** | **string** | Sold To contacts phone number. | 7 | **extension** | **string** | Sold To contacts phone extension. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/VOIDSHIPMENTResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # VOIDSHIPMENTResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **void_shipment_response** | [**\UPS\Shipping\Shipping\VoidShipmentResponse**](VoidShipmentResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/src/exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Comparator; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/complexity/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Complexity; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Diff; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /Paperless/docs/Model/PAPERLESSDOCUMENTDeleteResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # PAPERLESSDOCUMENTDeleteResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **delete_response** | [**\UPS\Paperless\Paperless\DeleteResponse**](DeleteResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/PAPERLESSDOCUMENTUploadResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # PAPERLESSDOCUMENTUploadResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **upload_response** | [**\UPS\Paperless\Paperless\UploadResponse**](UploadResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Pickup/docs/Model/RequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # RequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext information that is echoed back during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext information that is echoed back during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LABELRECOVERYResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # LABELRECOVERYResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **label_recovery_response** | [**\UPS\Shipping\Shipping\LabelRecoveryResponse**](LabelRecoveryResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /vendor/friendsofphp/php-cs-fixer/ci-integration.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | IFS=' 5 | ' 6 | CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB "${COMMIT_RANGE}") 7 | if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php-cs-fixer(\\.dist)?\\.php|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${CHANGED_FILES}"); else EXTRA_ARGS=''; fi 8 | vendor/bin/php-cs-fixer check --config=.php-cs-fixer.dist.php -v --show-progress=dots --stop-on-violation --using-cache=no ${EXTRA_ARGS} 9 | -------------------------------------------------------------------------------- /vendor/psr/log/src/AbstractLogger.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\GlobalState; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\LinesOfCode; 11 | 12 | final class RuntimeException extends \RuntimeException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/string/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /DeliveryDefense/docs/Model/Error.md: -------------------------------------------------------------------------------- 1 | # Error 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **error_code** | [****](.md) | An error code representing the type of error. | 7 | **error_message** | [****](.md) | * Invalid Authentication Information. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Locator/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\Locator\Locator\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\Pickup\Pickup\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPPendingRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPPendingRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_pending_status_request** | [**\UPS\Pickup\Pickup\PickupPendingStatusRequest**](PickupPendingStatusRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/RequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # RequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\Rating\Rating\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LRRequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # LRRequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ProductPackingListInfo.md: -------------------------------------------------------------------------------- 1 | # ProductPackingListInfo 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **package_associated** | [**\UPS\Shipping\Shipping\PackingListInfoPackageAssociated[]**](PackingListInfoPackageAssociated.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/RequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # RequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Tracking/docs/Model/Location.md: -------------------------------------------------------------------------------- 1 | # Location 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **address** | [**\UPS\Tracking\Tracking\Address**](Address.md) | | [optional] 7 | **slic** | **string** | Site Location Indicator Code (SLIC) | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/RequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # RequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/ResponseAlert.md: -------------------------------------------------------------------------------- 1 | # ResponseAlert 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Warning code returned by the system. | 7 | **description** | **string** | Warning messages returned by the system. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/RequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # RequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PICKUPPendingResponseWrapper.md: -------------------------------------------------------------------------------- 1 | # PICKUPPendingResponseWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pickup_pending_status_response** | [**\UPS\Pickup\Pickup\PickupPendingStatusResponse**](PickupPendingStatusResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PickupCancelRequestRequest.md: -------------------------------------------------------------------------------- 1 | # PickupCancelRequestRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **transaction_reference** | [**\UPS\Pickup\Pickup\RequestTransactionReference**](RequestTransactionReference.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/ShipmentDetailPalletInformation.md: -------------------------------------------------------------------------------- 1 | # ShipmentDetailPalletInformation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **dimensions** | [**\UPS\Pickup\Pickup\PalletInformationDimensions**](PalletInformationDimensions.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/RequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # RequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/PackageUPSPremier.md: -------------------------------------------------------------------------------- 1 | # PackageUPSPremier 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **category** | **string** | UPS Premier Category Valid values are 01,02,03 UPS Premier Silver - 01 UPS Premier Gold - 02 UPS Premier Platinum - 03 | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\Shipping\Shipping\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/LRResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # LRResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/PackageResultsSimpleRate.md: -------------------------------------------------------------------------------- 1 | # PackageResultsSimpleRate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Simple Rate Package Size Valid values: XS - Extra Small S - Small M - Medium L - Large XL - Extra Large | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/VoidRequestTransactionReference.md: -------------------------------------------------------------------------------- 1 | # VoidRequestTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /AddressValidation/docs/Model/ResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # ResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /DangerousGoods/docs/Model/ChemicalDataProperShippingNameDetail.md: -------------------------------------------------------------------------------- 1 | # ChemicalDataProperShippingNameDetail 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **proper_shipping_name** | [**array**](array.md) | The Proper Shipping Name assigned by ADR, CFR or IATA. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /LandedCost/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\LandedCost\LandedCost\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /OAuthClientCredentials/docs/Model/TokenErrorResponse.md: -------------------------------------------------------------------------------- 1 | # TokenErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\OAuthClientCredentials\OAuthClientCredentials\ErrorResponseWrapper**](ErrorResponseWrapper.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\Paperless\Paperless\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/DimensionsUnitOfMeasurement.md: -------------------------------------------------------------------------------- 1 | # DimensionsUnitOfMeasurement 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | - IN = Inches - CM = Centimeters | 7 | **description** | **string** | See Code above. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PickupFacilitiesFacilityTime.md: -------------------------------------------------------------------------------- 1 | # PickupFacilitiesFacilityTime 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **day_of_week** | [**\UPS\Pickup\Pickup\PickupFacilitiesFacilityTimeDayOfWeek[]**](PickupFacilitiesFacilityTimeDayOfWeek.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/PreNotificationResponse.md: -------------------------------------------------------------------------------- 1 | # PreNotificationResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **response** | [**\UPS\PreNotification\PreNotification\PreNotificationResponseResponse**](PreNotificationResponseResponse.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/RatedPackageSimpleRate.md: -------------------------------------------------------------------------------- 1 | # RatedPackageSimpleRate 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Simple Rate Code - XS = Extra Small - S = Small - M = Medium - L = Large - XL = Extra Large | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/ShipmentChargeBillShipper.md: -------------------------------------------------------------------------------- 1 | # ShipmentChargeBillShipper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **account_number** | **string** | UPS account number Must be the same UPS account number as the one provided in Shipper/ShipperNumber. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/ShipmentServiceOptionsCODCODAmount.md: -------------------------------------------------------------------------------- 1 | # ShipmentServiceOptionsCODCODAmount 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **currency_code** | **string** | COD amount currency code type. | 7 | **monetary_value** | **string** | COD Amount. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/NotificationTextMessage.md: -------------------------------------------------------------------------------- 1 | # NotificationTextMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **phone_number** | **string** | Phone number for receiving Text Alternate Delivery Location notification and UAP Shipper notification. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/NotificationVoiceMessage.md: -------------------------------------------------------------------------------- 1 | # NotificationVoiceMessage 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **phone_number** | **string** | Phone number for receiving Voice Alternate Delivery Location notification and UAP Shipper notification. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Shipping/docs/Model/VoidResponseTransactionReference.md: -------------------------------------------------------------------------------- 1 | # VoidResponseTransactionReference 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **customer_context** | **string** | The CustomerContext Information which will be echoed during response. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Locator/docs/Model/PostalCodeListPostalCode.md: -------------------------------------------------------------------------------- 1 | # PostalCodeListPostalCode 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **primary_postal_code** | **string** | Primary postal code. | 7 | **secondary_postal_code** | **string** | Secondary postal code. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Locator/docs/Model/PrivateNetworkListPrivateNetwork.md: -------------------------------------------------------------------------------- 1 | # PrivateNetworkListPrivateNetwork 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **network_id** | **string** | Value of networkID. | 7 | **network_description** | **string** | Description of the Network. | 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/CommonErrorResponse.md: -------------------------------------------------------------------------------- 1 | # CommonErrorResponse 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **errors** | [**\UPS\QuantumView\QuantumView\ErrorMessage[]**](ErrorMessage.md) | The error array containing any errors that occurred. | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Rating/docs/Model/RatedPackageAccessorial.md: -------------------------------------------------------------------------------- 1 | # RatedPackageAccessorial 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Code for Accessorial Indicator. | 7 | **description** | **string** | Description for Accessorial Indicator. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /Shipping/docs/Model/ShipmentRequestReceiptSpecification.md: -------------------------------------------------------------------------------- 1 | # ShipmentRequestReceiptSpecification 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **image_format** | [**\UPS\Shipping\Shipping\ReceiptSpecificationImageFormat**](ReceiptSpecificationImageFormat.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php: -------------------------------------------------------------------------------- 1 | , Sebastian Heuer , Sebastian Bergmann and contributors 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | * 10 | */ 11 | namespace PharIo\Manifest; 12 | 13 | interface Requirement { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\Invoker; 11 | 12 | use RuntimeException; 13 | 14 | final class TimeoutException extends RuntimeException implements Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/sebastian/object-enumerator/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\ObjectEnumerator; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | namespace SebastianBergmann\ObjectReflector; 11 | 12 | class InvalidArgumentException extends \InvalidArgumentException implements Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /Locator/docs/Model/ServiceSearchServiceOptionCode.md: -------------------------------------------------------------------------------- 1 | # ServiceSearchServiceOptionCode 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | Code that defines the optional service. Valid values: - 01 - Saturday pickup. Only valid for air service. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Paperless/docs/Model/PushToImageRepositoryRequestFormsHistoryDocumentID.md: -------------------------------------------------------------------------------- 1 | # PushToImageRepositoryRequestFormsHistoryDocumentID 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **document_id** | **string[]** | DocumentID represents a document uploaded to Forms History. | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /Pickup/docs/Model/PickupPendingStatusRequestRequest.md: -------------------------------------------------------------------------------- 1 | # PickupPendingStatusRequestRequest 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **transaction_reference** | [**\UPS\Pickup\Pickup\RequestTransactionReference**](RequestTransactionReference.md) | | [optional] 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /PreNotification/docs/Model/PRENOTIFICATIONRequestWrapper.md: -------------------------------------------------------------------------------- 1 | # PRENOTIFICATIONRequestWrapper 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **pre_notification_request** | [**\UPS\PreNotification\PreNotification\PreNotificationRequest**](PreNotificationRequest.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/GenericService.md: -------------------------------------------------------------------------------- 1 | # GenericService 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **code** | **string** | For addition information, refer to the Service Codes table in the Appendix. | 7 | **description** | **string** | Not used. | [optional] 8 | 9 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 10 | 11 | -------------------------------------------------------------------------------- /QuantumView/docs/Model/OriginActivityLocation.md: -------------------------------------------------------------------------------- 1 | # OriginActivityLocation 2 | 3 | ## Properties 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **address_artifact_format** | [**\UPS\QuantumView\QuantumView\ActivityLocationAddressArtifactFormat**](ActivityLocationAddressArtifactFormat.md) | | 7 | 8 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 9 | 10 | --------------------------------------------------------------------------------