├── LICENSE.md ├── NOTICE.md ├── composer.json └── src ├── Account ├── Enums │ ├── CategoryTypeEnum.php │ ├── CountryCodeEnum.php │ ├── CurrencyCodeEnum.php │ ├── ExternalPaymentMethodTypeEnum.php │ ├── MarketplaceIdEnum.php │ ├── PaymentInstrumentBrandEnum.php │ ├── PaymentMethodTypeEnum.php │ ├── ProgramTypeEnum.php │ ├── RecipientAccountReferenceTypeEnum.php │ ├── RefundMethodEnum.php │ ├── RegionTypeEnum.php │ ├── ReturnMethodEnum.php │ ├── ReturnShippingCostPayerEnum.php │ ├── ShippingCostTypeEnum.php │ ├── ShippingOptionTypeEnum.php │ └── TimeDurationUnitEnum.php ├── Services │ ├── AccountBaseService.php │ └── AccountService.php └── Types │ ├── Amount.php │ ├── CategoryType.php │ ├── CreateAFulfillmentPolicyRestRequest.php │ ├── CreateAFulfillmentPolicyRestResponse.php │ ├── CreateAPaymentPolicyRestRequest.php │ ├── CreateAPaymentPolicyRestResponse.php │ ├── CreateAReturnPolicyRestRequest.php │ ├── CreateAReturnPolicyRestResponse.php │ ├── CreateASalesTaxTableRestRequest.php │ ├── CreateASalesTaxTableRestResponse.php │ ├── DeleteAFulfillmentPolicyRestRequest.php │ ├── DeleteAFulfillmentPolicyRestResponse.php │ ├── DeleteAPaymentPolicyRestRequest.php │ ├── DeleteAPaymentPolicyRestResponse.php │ ├── DeleteAReturnPolicyRestRequest.php │ ├── DeleteAReturnPolicyRestResponse.php │ ├── DeleteASalesTaxTableRestRequest.php │ ├── DeleteASalesTaxTableRestResponse.php │ ├── Deposit.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── ExternalPaymentMethod.php │ ├── FulfillmentPolicy.php │ ├── FulfillmentPolicyRequest.php │ ├── FulfillmentPolicyResponse.php │ ├── GetAFulfillmentPolicyByIDRestRequest.php │ ├── GetAFulfillmentPolicyByIDRestResponse.php │ ├── GetAFulfillmentPolicyByNameRestRequest.php │ ├── GetAFulfillmentPolicyByNameRestResponse.php │ ├── GetAPaymentPolicyByIDRestRequest.php │ ├── GetAPaymentPolicyByIDRestResponse.php │ ├── GetAPaymentPolicyByNameRestRequest.php │ ├── GetAPaymentPolicyByNameRestResponse.php │ ├── GetAReturnPolicyByIDRestRequest.php │ ├── GetAReturnPolicyByIDRestResponse.php │ ├── GetAReturnPolicyByNameRestRequest.php │ ├── GetAReturnPolicyByNameRestResponse.php │ ├── GetASalesTaxTableRestRequest.php │ ├── GetASalesTaxTableRestResponse.php │ ├── GetAccountPrivilegesRestResponse.php │ ├── GetAllSalesTaxTablesRestRequest.php │ ├── GetAllSalesTaxTablesRestResponse.php │ ├── GetFulfillmentPoliciesByMarketplaceRestRequest.php │ ├── GetFulfillmentPoliciesByMarketplaceRestResponse.php │ ├── GetOptedInProgramsRestResponse.php │ ├── GetPaymentPoliciesByMarketplaceRestRequest.php │ ├── GetPaymentPoliciesByMarketplaceRestResponse.php │ ├── GetReturnPoliciesByMarketplaceRestRequest.php │ ├── GetReturnPoliciesByMarketplaceRestResponse.php │ ├── GetShippingRateTablesRestRequest.php │ ├── GetShippingRateTablesRestResponse.php │ ├── InventorySizing.php │ ├── InventorySnapshot.php │ ├── LookbackPeriod.php │ ├── MerchantExternalProfile.php │ ├── OptInToProgramRestRequest.php │ ├── OptInToProgramRestResponse.php │ ├── OptOutOfProgramRestRequest.php │ ├── OptOutOfProgramRestResponse.php │ ├── PaymentMethod.php │ ├── PaymentPolicy.php │ ├── PaymentPolicyRequest.php │ ├── PaymentPolicyResponse.php │ ├── Program.php │ ├── Programs.php │ ├── RateTable.php │ ├── RateTableResponse.php │ ├── RecipientAccountReference.php │ ├── Region.php │ ├── RegionSet.php │ ├── ReturnPolicy.php │ ├── ReturnPolicyRequest.php │ ├── ReturnPolicyResponse.php │ ├── ReturnSnapshot.php │ ├── SalesTax.php │ ├── SalesTaxBase.php │ ├── SalesTaxes.php │ ├── SellingLimit.php │ ├── SellingPrivileges.php │ ├── SetFulfillmentPolicyResponse.php │ ├── SetPaymentPolicyResponse.php │ ├── SetReturnPolicyResponse.php │ ├── ShippingOption.php │ ├── ShippingService.php │ ├── SoldAggregatedMetrics.php │ ├── TimeDuration.php │ ├── TransactionSnapshot.php │ ├── TransactionVolume.php │ ├── UpdateAFulfillmentPolicyRestRequest.php │ ├── UpdateAFulfillmentPolicyRestResponse.php │ ├── UpdateAPaymentPolicyRestRequest.php │ ├── UpdateAPaymentPolicyRestResponse.php │ ├── UpdateAReturnPolicyRestRequest.php │ └── UpdateAReturnPolicyRestResponse.php ├── Analytics ├── Enums │ ├── CycleTypeEnum.php │ ├── DataTypeEnum.php │ ├── ProgramEnum.php │ └── StandardsLevelEnum.php ├── Services │ ├── AnalyticsBaseService.php │ └── AnalyticsService.php └── Types │ ├── Cycle.php │ ├── Definition.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── FilterField.php │ ├── FindSellerStandardsProfilesResponse.php │ ├── GetASpecificSellerProfileRestRequest.php │ ├── GetASpecificSellerProfileRestResponse.php │ ├── GetAllSellerProfilesRestResponse.php │ ├── GetTrafficReportRestRequest.php │ ├── GetTrafficReportRestResponse.php │ ├── Header.php │ ├── Metric.php │ ├── RangeValue.php │ ├── Record.php │ ├── Report.php │ ├── StandardsProfile.php │ └── Value.php ├── Browse ├── Enums │ ├── AvailabilityStatusEnum.php │ ├── AvailabilityThresholdEnum.php │ ├── CountryCodeEnum.php │ ├── CurrencyCodeEnum.php │ ├── DeliveryOptionsEnum.php │ ├── ItemGroupTypeEnum.php │ ├── PriceDisplayConditionEnum.php │ ├── RefundMethodEnum.php │ ├── RegionTypeEnum.php │ ├── ReturnMethodEnum.php │ ├── ReturnShippingCostPayerEnum.php │ ├── TimeDurationUnitEnum.php │ └── ValueTypeEnum.php ├── Services │ ├── BrowseBaseService.php │ └── BrowseService.php └── Types │ ├── Address.php │ ├── AspectDistribution.php │ ├── AspectFilter.php │ ├── AspectValueDistribution.php │ ├── BuyingOptionDistribution.php │ ├── Category.php │ ├── CategoryDistribution.php │ ├── CommonDescriptions.php │ ├── ConditionDistribution.php │ ├── ConvertedAmount.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── EstimatedAvailability.php │ ├── FilterField.php │ ├── GetItemByLegacyIdRestRequest.php │ ├── GetItemByLegacyIdRestResponse.php │ ├── GetItemRestRequest.php │ ├── GetItemRestResponse.php │ ├── GetItemsByItemGroupRestRequest.php │ ├── GetItemsByItemGroupRestResponse.php │ ├── Image.php │ ├── Item.php │ ├── ItemGroupSummary.php │ ├── ItemLocationImpl.php │ ├── ItemReturnTerms.php │ ├── ItemSummary.php │ ├── Items.php │ ├── LegalAddress.php │ ├── MarketingPrice.php │ ├── PickupOptionSummary.php │ ├── RangeValue.php │ ├── RatingHistogram.php │ ├── Refinement.php │ ├── Region.php │ ├── ReviewRating.php │ ├── SearchForItemsRestRequest.php │ ├── SearchForItemsRestResponse.php │ ├── SearchPagedCollection.php │ ├── Seller.php │ ├── SellerLegalInfo.php │ ├── ShipToLocation.php │ ├── ShipToLocations.php │ ├── ShippingOption.php │ ├── ShippingOptionSummary.php │ ├── SortField.php │ ├── TargetLocation.php │ ├── TaxJurisdiction.php │ ├── TaxType.php │ ├── Taxes.php │ ├── TimeDuration.php │ ├── TypedNameValue.php │ └── VatDetail.php ├── BulkDataExchange ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── FileType.php │ ├── IncludeListingType.php │ ├── IncludeShippingAddressType.php │ ├── ItemEventType.php │ ├── JobStatus.php │ ├── ListingType.php │ ├── OrderStatusTypes.php │ └── RecurringJobStatus.php ├── Services │ ├── BulkDataExchangeBaseService.php │ └── BulkDataExchangeService.php └── Types │ ├── AbortJobRequest.php │ ├── AbortJobResponse.php │ ├── AbortRecurringJobExecutionRequest.php │ ├── AbortRecurringJobExecutionResponse.php │ ├── ActivateRecurringJobRequest.php │ ├── ActivateRecurringJobResponse.php │ ├── ActiveInventoryReportFilter.php │ ├── AuctionItemDetails.php │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── CreateRecurringJobRequest.php │ ├── CreateRecurringJobResponse.php │ ├── CreateUploadJobRequest.php │ ├── CreateUploadJobResponse.php │ ├── DailyRecurrence.php │ ├── DateFilter.php │ ├── DeleteRecurringJobRequest.php │ ├── DeleteRecurringJobResponse.php │ ├── DownloadJobRecurringFilter.php │ ├── DownloadRequestFilter.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── FeeSettlementReportFilter.php │ ├── FixedPriceItemDetails.php │ ├── GetItemInfoReportFilter.php │ ├── GetItemJobActionType.php │ ├── GetJobStatusRequest.php │ ├── GetJobStatusResponse.php │ ├── GetJobsRequest.php │ ├── GetJobsResponse.php │ ├── GetRecurringJobExecutionHistoryRequest.php │ ├── GetRecurringJobExecutionHistoryResponse.php │ ├── GetRecurringJobExecutionStatusRequest.php │ ├── GetRecurringJobExecutionStatusResponse.php │ ├── GetRecurringJobsRequest.php │ ├── GetRecurringJobsResponse.php │ ├── JobProfile.php │ ├── MonthlyRecurrence.php │ ├── OrderReportFilter.php │ ├── OrderReportRecurringFilter.php │ ├── RecurringJobDetail.php │ ├── SiteFilter.php │ ├── SoldReportFilter.php │ ├── StartDownloadJobRequest.php │ ├── StartDownloadJobResponse.php │ ├── StartUploadJobRequest.php │ ├── StartUploadJobResponse.php │ ├── SuspendRecurringJobRequest.php │ ├── SuspendRecurringJobResponse.php │ └── WeeklyRecurrence.php ├── BusinessPoliciesManagement ├── Enums │ ├── AckValue.php │ ├── ConsolidationJobStatus.php │ ├── ConsolidationJobType.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── IsoCurrencyCode.php │ ├── ProfileType.php │ └── ShippingRateType.php ├── Services │ ├── BusinessPoliciesManagementBaseService.php │ └── BusinessPoliciesManagementService.php └── Types │ ├── AddSellerProfileRequest.php │ ├── AddSellerProfileResponse.php │ ├── AdditionalServiceShippingOption.php │ ├── Amount.php │ ├── BaseRequest.php │ ├── BaseResponse.php │ ├── CategoryGroup.php │ ├── CategoryGroups.php │ ├── ConsolidateShippingProfilesRequest.php │ ├── ConsolidateShippingProfilesResponse.php │ ├── ConsolidationJob.php │ ├── DeliveryEstimate.php │ ├── DeliveryEstimateMetaInfo.php │ ├── DepositDetails.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── ExtensionType.php │ ├── FreightShipping.php │ ├── GetConsolidationJobStatusRequest.php │ ├── GetConsolidationJobStatusResponse.php │ ├── GetSellerProfilesRequest.php │ ├── GetSellerProfilesResponse.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── Insurance.php │ ├── PaymentInfo.php │ ├── PaymentProfile.php │ ├── PaymentProfileList.php │ ├── RateTableInfo.php │ ├── RemoveOverridesRequest.php │ ├── RemoveOverridesResponse.php │ ├── RemoveProfileRequest.php │ ├── RemoveProfileResponse.php │ ├── RemoveSellerProfilesRequest.php │ ├── RemoveSellerProfilesResponse.php │ ├── ReturnPolicyInfo.php │ ├── ReturnPolicyProfile.php │ ├── ReturnPolicyProfileList.php │ ├── SellerProfile.php │ ├── SellerProfileResponseStatus.php │ ├── ServiceDefinition.php │ ├── SetSellerProfileRequest.php │ ├── SetSellerProfileResponse.php │ ├── ShippingPolicyIdentity.php │ ├── ShippingPolicyInfo.php │ ├── ShippingPolicyInfoService.php │ ├── ShippingPolicyProfile.php │ ├── ShippingPolicyProfileList.php │ ├── ShippingPolicyService.php │ └── ShippingProfileDiscountInfo.php ├── Catalog ├── Enums │ ├── AspectDataTypeEnum.php │ ├── AspectModeEnum.php │ ├── ChangeRequestStatus.php │ ├── ChangeRequestType.php │ ├── ItemToAspectCardinalityEnum.php │ ├── ProductAttributeName.php │ └── ReferenceType.php ├── Services │ ├── CatalogBaseService.php │ └── CatalogService.php └── Types │ ├── Aspect.php │ ├── AspectDistribution.php │ ├── AspectFilter.php │ ├── AspectValueDistribution.php │ ├── CategoryAspect.php │ ├── CategoryAspectValue.php │ ├── ChangeRequest.php │ ├── ConflictingProduct.php │ ├── Correction.php │ ├── CorrectionAspectValue.php │ ├── CorrectionAspectValues.php │ ├── CorrectionProductAttribute.php │ ├── CreateChangeRequestPayload.php │ ├── CreateChangeRequestRestRequest.php │ ├── CreateChangeRequestRestResponse.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── FilterField.php │ ├── GetChangeRequestRestRequest.php │ ├── GetChangeRequestRestResponse.php │ ├── GetChangeRequestsResponse.php │ ├── GetChangeRequestsRestRequest.php │ ├── GetChangeRequestsRestResponse.php │ ├── GetProductMetadataForCategoriesRestRequest.php │ ├── GetProductMetadataForCategoriesRestResponse.php │ ├── GetProductMetadataRestRequest.php │ ├── GetProductMetadataRestResponse.php │ ├── GetProductRestRequest.php │ ├── GetProductRestResponse.php │ ├── Image.php │ ├── ProcessResolution.php │ ├── Product.php │ ├── ProductAspect.php │ ├── ProductAspectConstraint.php │ ├── ProductAspectValue.php │ ├── ProductIdentifier.php │ ├── ProductIdentifierConstraint.php │ ├── ProductIdentifierForProductMetadata.php │ ├── ProductMetadata.php │ ├── ProductMetadataAspect.php │ ├── ProductMetadataForCategories.php │ ├── ProductSearchResponse.php │ ├── ProductSummary.php │ ├── RangeValue.php │ ├── Refinement.php │ ├── SearchRestRequest.php │ ├── SearchRestResponse.php │ ├── SuggestedProduct.php │ ├── ValueConstraint.php │ ├── Violation.php │ ├── ViolationAspectValues.php │ └── ViolationProductAttribute.php ├── Compliance ├── Enums │ ├── ComplianceTypeEnum.php │ └── MarketplaceIdEnum.php ├── Services │ ├── ComplianceBaseService.php │ └── ComplianceService.php └── Types │ ├── ComplianceDetail.php │ ├── ComplianceSummary.php │ ├── ComplianceSummaryInfo.php │ ├── ComplianceViolation.php │ ├── CorrectiveRecommendations.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── GetListingViolationsRestRequest.php │ ├── GetListingViolationsRestResponse.php │ ├── GetListingViolationsSummaryRestRequest.php │ ├── GetListingViolationsSummaryRestResponse.php │ ├── NameValueList.php │ ├── PagedComplianceViolationCollection.php │ ├── ProductRecommendation.php │ └── VariationDetails.php ├── ConfigurationResolver.php ├── Constants ├── GlobalIds.php ├── MarketplaceIds.php └── SiteIds.php ├── Credentials ├── Credentials.php ├── CredentialsInterface.php └── CredentialsProvider.php ├── Debugger.php ├── Exceptions ├── InvalidPropertyTypeException.php └── UnknownPropertyException.php ├── Feed ├── Enums │ └── CurrencyCodeEnum.php ├── Services │ ├── FeedBaseService.php │ └── FeedService.php └── Types │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── GetItemFeedRestRequest.php │ ├── GetItemFeedRestResponse.php │ ├── ItemFeed.php │ └── ItemFeedResponse.php ├── Feedback ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ └── ErrorSeverity.php ├── Services │ ├── FeedbackBaseService.php │ └── FeedbackService.php └── Types │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── CreateDSRSummaryByCategoryRequest.php │ ├── CreateDSRSummaryByPeriodRequest.php │ ├── CreateDSRSummaryByShippingDetailRequest.php │ ├── CreateDSRSummaryByTransactionRequest.php │ ├── CreateDSRSummaryResponse.php │ ├── DSRSummary.php │ ├── DateRange.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── GetDSRSummaryRequest.php │ ├── GetDSRSummaryResponse.php │ └── TransactionKey.php ├── FileTransfer ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ └── ErrorSeverity.php ├── Services │ ├── FileTransferBaseService.php │ └── FileTransferService.php └── Types │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── Data.php │ ├── DownloadFileRequest.php │ ├── DownloadFileResponse.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── FileAttachment.php │ ├── UploadFileRequest.php │ ├── UploadFileResponse.php │ └── XopInclude.php ├── Finding ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── GallerySizeEnum.php │ ├── ItemFilterType.php │ ├── MapExposureEnum.php │ ├── OutputSelectorType.php │ ├── PriceTreatmentEnum.php │ └── SortOrderType.php ├── Services │ ├── FindingBaseService.php │ └── FindingService.php └── Types │ ├── Affiliate.php │ ├── Amount.php │ ├── Aspect.php │ ├── AspectFilter.php │ ├── AspectHistogramContainer.php │ ├── AspectValueHistogram.php │ ├── BaseFindingServiceRequest.php │ ├── BaseFindingServiceResponse.php │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── BestMatchFindingServiceRequest.php │ ├── Category.php │ ├── CategoryHistogram.php │ ├── CategoryHistogramContainer.php │ ├── Condition.php │ ├── ConditionHistogram.php │ ├── ConditionHistogramContainer.php │ ├── DiscountPriceInfo.php │ ├── Distance.php │ ├── DomainFilter.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── ExtensionType.php │ ├── FindCompletedItemsRequest.php │ ├── FindCompletedItemsResponse.php │ ├── FindItemsAdvancedRequest.php │ ├── FindItemsAdvancedResponse.php │ ├── FindItemsByCategoryRequest.php │ ├── FindItemsByCategoryResponse.php │ ├── FindItemsByImageRequest.php │ ├── FindItemsByImageResponse.php │ ├── FindItemsByKeywordsRequest.php │ ├── FindItemsByKeywordsResponse.php │ ├── FindItemsByProductRequest.php │ ├── FindItemsByProductResponse.php │ ├── FindItemsForFavoriteSearchRequest.php │ ├── FindItemsForFavoriteSearchResponse.php │ ├── FindItemsIneBayStoresRequest.php │ ├── FindItemsIneBayStoresResponse.php │ ├── GalleryInfoContainer.php │ ├── GalleryURL.php │ ├── GetHistogramsRequest.php │ ├── GetHistogramsResponse.php │ ├── GetSearchKeywordsRecommendationRequest.php │ ├── GetSearchKeywordsRecommendationResponse.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── ItemAttribute.php │ ├── ItemFilter.php │ ├── ListingInfo.php │ ├── PaginationInput.php │ ├── PaginationOutput.php │ ├── ProductId.php │ ├── SearchItem.php │ ├── SearchResult.php │ ├── SellerInfo.php │ ├── SellingStatus.php │ ├── ShippingInfo.php │ ├── Storefront.php │ └── UnitPriceInfo.php ├── Fulfillment ├── Enums │ ├── AcknowledgeStatusEnum.php │ ├── CancelRequestStateEnum.php │ ├── CancelStateEnum.php │ ├── CountryCodeEnum.php │ ├── CurrencyCodeEnum.php │ ├── FinalDestinationTypeEnum.php │ ├── FulfillmentInstructionsType.php │ ├── LineItemFulfillmentStatusEnum.php │ ├── MarketplaceIdEnum.php │ ├── OrderFulfillmentStatus.php │ ├── OrderPaymentStatusEnum.php │ ├── PaymentMethodTypeEnum.php │ ├── PaymentModeTypeEnum.php │ ├── PaymentStatusEnum.php │ ├── RefundStatusEnum.php │ ├── RefundTypeEnum.php │ └── SoldFormatEnum.php ├── Services │ ├── FulfillmentBaseService.php │ └── FulfillmentService.php └── Types │ ├── Address.php │ ├── Amount.php │ ├── AppliedPromotion.php │ ├── Attribute.php │ ├── Buyer.php │ ├── CancelRequest.php │ ├── CancelStatus.php │ ├── Contact.php │ ├── CreateAShippingFulfillmentRestRequest.php │ ├── CreateAShippingFulfillmentRestResponse.php │ ├── DeliveryCost.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── Fee.php │ ├── FilterField.php │ ├── FulfillmentStartInstruction.php │ ├── GetAShippingFulfillmentRestRequest.php │ ├── GetAShippingFulfillmentRestResponse.php │ ├── GetAnOrderRestRequest.php │ ├── GetAnOrderRestResponse.php │ ├── GetOrdersRestRequest.php │ ├── GetOrdersRestResponse.php │ ├── GetShippingFulfillmentsRestRequest.php │ ├── GetShippingFulfillmentsRestResponse.php │ ├── GiftDetails.php │ ├── LineItem.php │ ├── LineItemFulfillmentInstructions.php │ ├── LineItemProperties.php │ ├── LineItemReference.php │ ├── LineItemRefund.php │ ├── Order.php │ ├── OrderRefund.php │ ├── OrderSearchPagedCollection.php │ ├── Payment.php │ ├── PaymentHold.php │ ├── PaymentSummary.php │ ├── PhoneNumber.php │ ├── PricingSummary.php │ ├── RangeValue.php │ ├── SellerActionsToRelease.php │ ├── ShippingFulfillment.php │ ├── ShippingFulfillmentDetails.php │ ├── ShippingFulfillmentPagedCollection.php │ ├── ShippingStep.php │ └── Tax.php ├── HalfFinding ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── HalfItemConditionCodeType.php │ ├── ItemFilterType.php │ ├── ProductIDCodeType.php │ ├── RentalDurationType.php │ ├── SortOnType.php │ ├── SortOrder.php │ └── Type.php ├── Services │ ├── HalfFindingBaseService.php │ └── HalfFindingService.php └── Types │ ├── Amount.php │ ├── BaseRequest.php │ ├── BaseResponse.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── ExtensionType.php │ ├── FindItemsRequest.php │ ├── FindItemsResponse.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── HalfCatalogProductType.php │ ├── ItemFilter.php │ ├── ItemType.php │ ├── NameValueListArrayType.php │ ├── NameValueListType.php │ ├── PaginationInputType.php │ ├── PaginationOutputType.php │ ├── ProductIDType.php │ ├── RentalAmount.php │ ├── ShippingServiceOptionsType.php │ ├── SortByType.php │ ├── StorefrontType.php │ └── UserType.php ├── HttpHandler.php ├── HttpHeadersTrait.php ├── Inventory ├── Enums │ ├── AvailabilityTypeEnum.php │ ├── ConditionEnum.php │ ├── CountryCodeEnum.php │ ├── DayOfWeekEnum.php │ ├── FormatTypeEnum.php │ ├── LengthUnitOfMeasureEnum.php │ ├── ListingStatusEnum.php │ ├── MarketplaceEnum.php │ ├── MinimumAdvertisedPriceHandlingEnum.php │ ├── OfferStatusEnum.php │ ├── PackageTypeEnum.php │ ├── ShippingServiceTypeEnum.php │ ├── SoldOnEnum.php │ ├── StatusEnum.php │ ├── StoreTypeEnum.php │ ├── TimeDurationUnitEnum.php │ └── WeightUnitOfMeasureEnum.php ├── Services │ ├── InventoryBaseService.php │ └── InventoryService.php └── Types │ ├── Address.php │ ├── Amount.php │ ├── Availability.php │ ├── BaseResponse.php │ ├── BulkMigrateListing.php │ ├── BulkMigrateListingResponse.php │ ├── BulkMigrateListingsRestRequest.php │ ├── BulkMigrateListingsRestResponse.php │ ├── BulkPriceQuantity.php │ ├── BulkPriceQuantityResponse.php │ ├── BulkUpdatePriceAndQuantityRestRequest.php │ ├── BulkUpdatePriceAndQuantityRestResponse.php │ ├── Compatibility.php │ ├── CompatibleProduct.php │ ├── CreateInventoryLocationRestRequest.php │ ├── CreateInventoryLocationRestResponse.php │ ├── CreateOfferRestRequest.php │ ├── CreateOfferRestResponse.php │ ├── CreateOrReplaceInventoryItemGroupRestRequest.php │ ├── CreateOrReplaceInventoryItemGroupRestResponse.php │ ├── CreateOrReplaceInventoryItemRestRequest.php │ ├── CreateOrReplaceInventoryItemRestResponse.php │ ├── CreateOrReplaceProductCompatibilityRestRequest.php │ ├── CreateOrReplaceProductCompatibilityRestResponse.php │ ├── DeleteInventoryItemGroupRestRequest.php │ ├── DeleteInventoryItemGroupRestResponse.php │ ├── DeleteInventoryItemRestRequest.php │ ├── DeleteInventoryItemRestResponse.php │ ├── DeleteInventoryLocationRestRequest.php │ ├── DeleteInventoryLocationRestResponse.php │ ├── DeleteOfferRestRequest.php │ ├── DeleteOfferRestResponse.php │ ├── DeleteProductCompatibilityRestRequest.php │ ├── DeleteProductCompatibilityRestResponse.php │ ├── Dimension.php │ ├── DisableInventoryLocationRestRequest.php │ ├── DisableInventoryLocationRestResponse.php │ ├── EbayOfferDetailsWithAll.php │ ├── EbayOfferDetailsWithId.php │ ├── EbayOfferDetailsWithKeys.php │ ├── EnableInventoryLocationRestRequest.php │ ├── EnableInventoryLocationRestResponse.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── Fee.php │ ├── FeeSummary.php │ ├── FeesSummaryResponse.php │ ├── GeoCoordinates.php │ ├── GetInventoryItemGroupRestRequest.php │ ├── GetInventoryItemGroupRestResponse.php │ ├── GetInventoryItemRestRequest.php │ ├── GetInventoryItemRestResponse.php │ ├── GetInventoryItemsRestRequest.php │ ├── GetInventoryItemsRestResponse.php │ ├── GetInventoryLocationRestRequest.php │ ├── GetInventoryLocationRestResponse.php │ ├── GetInventoryLocationsRestRequest.php │ ├── GetInventoryLocationsRestResponse.php │ ├── GetListingFeesRestRequest.php │ ├── GetListingFeesRestResponse.php │ ├── GetOfferRestRequest.php │ ├── GetOfferRestResponse.php │ ├── GetOffersRestRequest.php │ ├── GetOffersRestResponse.php │ ├── GetProductCompatibilityRestRequest.php │ ├── GetProductCompatibilityRestResponse.php │ ├── Interval.php │ ├── InventoryItem.php │ ├── InventoryItemGroup.php │ ├── InventoryItemListing.php │ ├── InventoryItems.php │ ├── InventoryLocation.php │ ├── InventoryLocationFull.php │ ├── InventoryLocationResponse.php │ ├── ListingDetails.php │ ├── ListingPolicies.php │ ├── Location.php │ ├── LocationDetails.php │ ├── LocationResponse.php │ ├── MigrateListing.php │ ├── MigrateListingResponse.php │ ├── OfferKeyWithId.php │ ├── OfferKeysWithId.php │ ├── OfferPriceQuantity.php │ ├── OfferResponse.php │ ├── Offers.php │ ├── OperatingHours.php │ ├── PackageWeightAndSize.php │ ├── PickupAtLocationAvailability.php │ ├── PriceQuantity.php │ ├── PriceQuantityResponse.php │ ├── PricingSummary.php │ ├── Product.php │ ├── ProductFamilyProperties.php │ ├── ProductIdentifier.php │ ├── PublishByInventoryItemGroupRequest.php │ ├── PublishOfferByInventoryItemGroupRestRequest.php │ ├── PublishOfferByInventoryItemGroupRestResponse.php │ ├── PublishOfferRestRequest.php │ ├── PublishOfferRestResponse.php │ ├── PublishResponse.php │ ├── ShipToLocationAvailability.php │ ├── ShippingCostOverride.php │ ├── SpecialHours.php │ ├── Specification.php │ ├── Tax.php │ ├── TimeDuration.php │ ├── UpdateInventoryLocationRestRequest.php │ ├── UpdateInventoryLocationRestResponse.php │ ├── UpdateOfferRestRequest.php │ ├── UpdateOfferRestResponse.php │ ├── VariesBy.php │ ├── Weight.php │ ├── WithdrawOfferRestRequest.php │ ├── WithdrawOfferRestResponse.php │ └── WithdrawResponse.php ├── JmesPath ├── AstRuntime.php ├── CompilerRuntime.php ├── DebugRuntime.php ├── Env.php ├── FnDispatcher.php ├── JmesPath.php ├── JmesPathableArrayInterface.php ├── JmesPathableObjectInterface.php ├── Lexer.php ├── Parser.php ├── SyntaxErrorException.php ├── TreeCompiler.php ├── TreeInterpreter.php └── Utils.php ├── Marketing ├── Enums │ ├── CampaignStatusEnum.php │ ├── CategoryScopeEnum.php │ ├── CriterionTypeEnum.php │ ├── CurrencyCodeEnum.php │ ├── DataTypeEnum.php │ ├── FundingModelEnum.php │ ├── InventoryCriterionEnum.php │ ├── InventoryReferenceTypeEnum.php │ ├── MarketplaceIdEnum.php │ ├── PromotionPriorityEnum.php │ ├── PromotionStatusEnum.php │ ├── ReportFormatEnum.php │ ├── ReportTypeEnum.php │ └── TaskStatusEnum.php ├── Services │ ├── MarketingBaseService.php │ └── MarketingService.php └── Types │ ├── Ad.php │ ├── AdIds.php │ ├── AdPagedCollection.php │ ├── AdReference.php │ ├── AdReferences.php │ ├── AdResponse.php │ ├── Ads.php │ ├── Amount.php │ ├── BaseResponse.php │ ├── BulkAdResponse.php │ ├── BulkCreateAdRequest.php │ ├── BulkCreateAdsByInventoryReferenceRequest.php │ ├── BulkCreateAdsByInventoryReferenceResponse.php │ ├── BulkCreateAdsByInventoryReferenceRestRequest.php │ ├── BulkCreateAdsByInventoryReferenceRestResponse.php │ ├── BulkCreateAdsByListingIDRestRequest.php │ ├── BulkCreateAdsByListingIDRestResponse.php │ ├── BulkDeleteAdRequest.php │ ├── BulkDeleteAdResponse.php │ ├── BulkDeleteAdsByInventoryReferenceRequest.php │ ├── BulkDeleteAdsByInventoryReferenceResponse.php │ ├── BulkDeleteAdsByInventoryReferenceRestRequest.php │ ├── BulkDeleteAdsByInventoryReferenceRestResponse.php │ ├── BulkDeleteAdsByListingIDRestRequest.php │ ├── BulkDeleteAdsByListingIDRestResponse.php │ ├── BulkUpdateAdBidsByInventoryReferenceRestRequest.php │ ├── BulkUpdateAdBidsByInventoryReferenceRestResponse.php │ ├── BulkUpdateAdBidsByListingIDRestRequest.php │ ├── BulkUpdateAdBidsByListingIDRestResponse.php │ ├── Campaign.php │ ├── CampaignCriterion.php │ ├── CampaignPagedCollection.php │ ├── Campaigns.php │ ├── CloneCampaignRequest.php │ ├── CloneCampaignRestRequest.php │ ├── CloneCampaignRestResponse.php │ ├── CreateAdByListingIDRestRequest.php │ ├── CreateAdByListingIDRestResponse.php │ ├── CreateAdRequest.php │ ├── CreateAdsByInventoryReferenceRequest.php │ ├── CreateAdsByInventoryReferenceResponse.php │ ├── CreateAdsByInventoryReferenceRestRequest.php │ ├── CreateAdsByInventoryReferenceRestResponse.php │ ├── CreateCampaignRequest.php │ ├── CreateCampaignRestRequest.php │ ├── CreateCampaignRestResponse.php │ ├── CreateItemPromotionRestRequest.php │ ├── CreateItemPromotionRestResponse.php │ ├── CreateReportTask.php │ ├── CreateReportTaskRestRequest.php │ ├── CreateReportTaskRestResponse.php │ ├── DeleteAdByIDRestRequest.php │ ├── DeleteAdByIDRestResponse.php │ ├── DeleteAdRequest.php │ ├── DeleteAdResponse.php │ ├── DeleteAdsByInventoryReferenceRequest.php │ ├── DeleteAdsByInventoryReferenceResponse.php │ ├── DeleteAdsByInventoryReferenceRestRequest.php │ ├── DeleteAdsByInventoryReferenceRestResponse.php │ ├── DeleteCampaignRestRequest.php │ ├── DeleteCampaignRestResponse.php │ ├── DeleteItemPromotionRestRequest.php │ ├── DeleteItemPromotionRestResponse.php │ ├── DeleteSpecificReportTaskRestRequest.php │ ├── DeleteSpecificReportTaskRestResponse.php │ ├── Dimension.php │ ├── DimensionKeyAnnotation.php │ ├── DimensionMetadata.php │ ├── DiscountBenefit.php │ ├── DiscountRule.php │ ├── DiscountSpecification.php │ ├── EndCampaignRestRequest.php │ ├── EndCampaignRestResponse.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── FindCampaignByAdReferenceRestRequest.php │ ├── FindCampaignByAdReferenceRestResponse.php │ ├── FundingStrategy.php │ ├── GetAPromotionReportRestRequest.php │ ├── GetAPromotionReportRestResponse.php │ ├── GetAdByIDRestRequest.php │ ├── GetAdByIDRestResponse.php │ ├── GetAdsByInventoryReferenceRestRequest.php │ ├── GetAdsByInventoryReferenceRestResponse.php │ ├── GetAdsRestRequest.php │ ├── GetAdsRestResponse.php │ ├── GetAllCampaignsRestRequest.php │ ├── GetAllCampaignsRestResponse.php │ ├── GetCampaignByIDRestRequest.php │ ├── GetCampaignByIDRestResponse.php │ ├── GetCampaignByNameRestRequest.php │ ├── GetCampaignByNameRestResponse.php │ ├── GetItemPromotionRestRequest.php │ ├── GetItemPromotionRestResponse.php │ ├── GetListingsInSpecificPromotionRestRequest.php │ ├── GetListingsInSpecificPromotionRestResponse.php │ ├── GetMetadataForAReportTypeRestRequest.php │ ├── GetMetadataForAReportTypeRestResponse.php │ ├── GetMetadataForAllReportsRestRequest.php │ ├── GetMetadataForAllReportsRestResponse.php │ ├── GetPromotionSummaryReportRestRequest.php │ ├── GetPromotionSummaryReportRestResponse.php │ ├── GetPromotionsRestRequest.php │ ├── GetPromotionsRestResponse.php │ ├── GetReportTasksRestRequest.php │ ├── GetReportTasksRestResponse.php │ ├── GetSpecificReportRestRequest.php │ ├── GetSpecificReportRestResponse.php │ ├── GetSpecificReportTaskRestRequest.php │ ├── GetSpecificReportTaskRestResponse.php │ ├── InventoryCriterion.php │ ├── InventoryItem.php │ ├── InventoryReference.php │ ├── ItemPromotion.php │ ├── ItemPromotionResponse.php │ ├── ItemsPagedCollection.php │ ├── ListingDetail.php │ ├── MetricMetadata.php │ ├── PauseAPromotionRestRequest.php │ ├── PauseAPromotionRestResponse.php │ ├── PauseCampaignRestRequest.php │ ├── PauseCampaignRestResponse.php │ ├── PromotionDetail.php │ ├── PromotionReportDetail.php │ ├── PromotionsPagedCollection.php │ ├── PromotionsReportPagedCollection.php │ ├── ReportMetadata.php │ ├── ReportMetadatas.php │ ├── ReportTask.php │ ├── ReportTaskPagedCollection.php │ ├── ResumeAPromotionRestRequest.php │ ├── ResumeAPromotionRestResponse.php │ ├── ResumeCampaignRestRequest.php │ ├── ResumeCampaignRestResponse.php │ ├── RuleCriteria.php │ ├── SelectionRule.php │ ├── SortField.php │ ├── SummaryReportResponse.php │ ├── UpdateBidPercentageRequest.php │ ├── UpdateBidRestRequest.php │ ├── UpdateBidRestResponse.php │ ├── UpdateCampaignIDentificationRestRequest.php │ ├── UpdateCampaignIDentificationRestResponse.php │ ├── UpdateCampaignIdentificationRequest.php │ ├── UpdateItemPromotionRestRequest.php │ └── UpdateItemPromotionRestResponse.php ├── Merchandising ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── ItemFilterType.php │ └── PriceTreatmentEnum.php ├── Services │ ├── MerchandisingBaseService.php │ └── MerchandisingService.php └── Types │ ├── Affiliate.php │ ├── Amount.php │ ├── BaseMerchandisingServiceRequest.php │ ├── BaseMerchandisingServiceResponse.php │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── DiscountPriceInfo.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── GetDealsRequest.php │ ├── GetMostWatchedItemsRequest.php │ ├── GetRelatedCategoryItemsRequest.php │ ├── GetSimilarItemsRequest.php │ ├── GetTopSellingProductsRequest.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── Item.php │ ├── ItemFilter.php │ ├── ItemRecommendations.php │ ├── MerchandisingServiceItemResponse.php │ ├── MerchandisingServiceProductResponse.php │ ├── Product.php │ ├── ProductId.php │ └── ProductRecommendations.php ├── MerchantData ├── Enums │ ├── AckCodeType.php │ ├── AddressAttributeCodeType.php │ ├── AddressOwnerCodeType.php │ ├── AddressRecordTypeCodeType.php │ ├── AddressRegistrationTypeCodeType.php │ ├── AddressStatusCodeType.php │ ├── AddressUsageCodeType.php │ ├── BestOfferStatusCodeType.php │ ├── BestOfferTypeCodeType.php │ ├── BusinessRoleType.php │ ├── BuyerPaymentInstrumentCodeType.php │ ├── BuyerPaymentMethodCodeType.php │ ├── BuyerProtectionCodeType.php │ ├── BuyerProtectionSourceCodeType.php │ ├── CancelStatusCodeType.php │ ├── CharityAffiliationTypeCodeType.php │ ├── CharitySellerStatusCodeType.php │ ├── CharityStatusCodeType.php │ ├── CheckoutStatusCodeType.php │ ├── CommentTypeCodeType.php │ ├── CompleteStatusCodeType.php │ ├── CountryCodeType.php │ ├── CurrencyCodeType.php │ ├── DaysCodeType.php │ ├── DepositTypeCodeType.php │ ├── DescriptionReviseModeCodeType.php │ ├── DetailLevelCodeType.php │ ├── DigitalStatusCodeType.php │ ├── DiscountNameCodeType.php │ ├── DiscountReasonCodeType.php │ ├── EBaySubscriptionTypeCodeType.php │ ├── EnableCodeType.php │ ├── EndReasonCodeType.php │ ├── ErrorClassificationCodeType.php │ ├── ErrorHandlingCodeType.php │ ├── ExternalProductCodeType.php │ ├── FeedbackRatingStarCodeType.php │ ├── GalleryStatusCodeType.php │ ├── GalleryTypeCodeType.php │ ├── GiftServicesCodeType.php │ ├── HitCounterCodeType.php │ ├── InquiryStatusCodeType.php │ ├── InsuranceOptionCodeType.php │ ├── InventoryTrackingMethodCodeType.php │ ├── InvocationStatusType.php │ ├── ItemSpecificSourceCodeType.php │ ├── ListingEnhancementsCodeType.php │ ├── ListingStatusCodeType.php │ ├── ListingSubtypeCodeType.php │ ├── ListingTypeCodeType.php │ ├── MeasurementSystemCodeType.php │ ├── MinimumAdvertisedPriceExposureCodeType.php │ ├── MismatchTypeCodeType.php │ ├── OrderStatusCodeType.php │ ├── PaidStatusCodeType.php │ ├── PayPalAccountLevelCodeType.php │ ├── PayPalAccountStatusCodeType.php │ ├── PayPalAccountTypeCodeType.php │ ├── PaymentHoldReasonCodeType.php │ ├── PaymentHoldStatusCodeType.php │ ├── PaymentInstructionCodeType.php │ ├── PaymentStatusCodeType.php │ ├── PaymentTransactionStatusCodeType.php │ ├── PaymentTypeCodeType.php │ ├── PayoutMethodType.php │ ├── PeriodCodeType.php │ ├── PhotoDisplayCodeType.php │ ├── PickupStatusCodeType.php │ ├── PictureFormatCodeType.php │ ├── PictureSetCodeType.php │ ├── PictureSourceCodeType.php │ ├── PictureUploadPolicyCodeType.php │ ├── PictureWatermarkCodeType.php │ ├── PricingTreatmentCodeType.php │ ├── PromotionItemPriceTypeCodeType.php │ ├── PromotionItemSelectionCodeType.php │ ├── PromotionMethodCodeType.php │ ├── PromotionSchemeCodeType.php │ ├── QuantityAvailableHintCodeType.php │ ├── ReasonHideFromSearchCodeType.php │ ├── RefundFailureCodeType.php │ ├── RefundLineTypeCodeType.php │ ├── RefundSourceTypeCodeType.php │ ├── RefundStatusCodeType.php │ ├── RefundingSourceTypeCodeType.php │ ├── RequiredSellerActionCodeType.php │ ├── ReturnStatusCodeType.php │ ├── ReviseReasonCodeType.php │ ├── SelectionModeCodeType.php │ ├── SellerBusinessCodeType.php │ ├── SellerGuaranteeLevelCodeType.php │ ├── SellerLevelCodeType.php │ ├── SellerPaymentMethodCodeType.php │ ├── SellereBayPaymentProcessStatusCodeType.php │ ├── SeverityCodeType.php │ ├── ShipmentDeliveryStatusCodeType.php │ ├── ShipmentStatusCodeType.php │ ├── ShippingFeatureCodeType.php │ ├── ShippingPackageCodeType.php │ ├── ShippingRateTypeCodeType.php │ ├── ShippingServiceType.php │ ├── ShippingTypeCodeType.php │ ├── SiteCodeType.php │ ├── SkypeContactOptionCodeType.php │ ├── SortOrderCodeType.php │ ├── TaxDescriptionCodeType.php │ ├── TaxIdentifierAttributeCodeType.php │ ├── TaxTypeCodeType.php │ ├── TopRatedProgramCodeType.php │ ├── TradingRoleCodeType.php │ ├── TransactionPlatformCodeType.php │ ├── TransactionReferenceCodeType.php │ ├── UnpaidItemCaseOpenTypeCodeType.php │ ├── UnpaidItemCaseStatusTypeCodeType.php │ ├── UserIdentityCodeType.php │ ├── UserStatusCodeType.php │ ├── VATStatusCodeType.php │ ├── ValueTypeCodeType.php │ └── WarningLevelCodeType.php ├── MerchantData.php └── Types │ ├── AbstractRequestType.php │ ├── AbstractResponseType.php │ ├── AccountTransactionType.php │ ├── ActiveInventoryReportRequestType.php │ ├── ActiveInventoryReportResponseType.php │ ├── AddFixedPriceItemRequestType.php │ ├── AddFixedPriceItemResponseType.php │ ├── AddItemRequestType.php │ ├── AddItemResponseType.php │ ├── AddressAttributeType.php │ ├── AddressType.php │ ├── AmountType.php │ ├── AttributeArrayType.php │ ├── AttributeSetArrayType.php │ ├── AttributeSetType.php │ ├── AttributeType.php │ ├── Base64BinaryType.php │ ├── BestOfferDetailsType.php │ ├── BiddingDetailsType.php │ ├── BiddingSummaryType.php │ ├── BotBlockRequestType.php │ ├── BotBlockResponseType.php │ ├── BrandMPNType.php │ ├── BulkDataExchangeRequestsType.php │ ├── BulkDataExchangeResponsesType.php │ ├── BusinessSellerDetailsType.php │ ├── BuyerPackageEnclosureType.php │ ├── BuyerPackageEnclosuresType.php │ ├── BuyerProtectionDetailsType.php │ ├── BuyerRequirementDetailsType.php │ ├── BuyerType.php │ ├── CalculatedShippingDiscountType.php │ ├── CalculatedShippingRateType.php │ ├── CancelDetailType.php │ ├── CategoryType.php │ ├── CharacteristicType.php │ ├── CharacteristicsSetType.php │ ├── CharityAffiliationDetailType.php │ ├── CharityAffiliationDetailsType.php │ ├── CharityAffiliationType.php │ ├── CharityAffiliationsType.php │ ├── CharityIDType.php │ ├── CharitySellerType.php │ ├── CharityType.php │ ├── CheckoutStatusType.php │ ├── ContactHoursDetailsType.php │ ├── CrossPromotionsType.php │ ├── DeliveryDetailsType.php │ ├── DeliveryStatusType.php │ ├── DigitalDeliverySelectedType.php │ ├── DigitalDeliveryUserType.php │ ├── DigitalGoodInfoType.php │ ├── DiscountPriceInfoType.php │ ├── DiscountProfileType.php │ ├── DistanceType.php │ ├── DuplicateInvocationDetailsType.php │ ├── EBayPaymentMismatchDetailsType.php │ ├── EndFixedPriceItemRequestType.php │ ├── EndFixedPriceItemResponseType.php │ ├── EndItemRequestType.php │ ├── EndItemResponseType.php │ ├── ErrorParameterType.php │ ├── ErrorType.php │ ├── ExpressItemRequirementsType.php │ ├── ExtendedContactDetailsType.php │ ├── ExtendedPictureDetailsType.php │ ├── ExtendedProductFinderIDType.php │ ├── ExternalProductIDType.php │ ├── ExternalTransactionType.php │ ├── FeatureEligibilityType.php │ ├── FeeSettlementReportRequestType.php │ ├── FeeSettlementReportResponseType.php │ ├── FeeType.php │ ├── FeedbackInfoType.php │ ├── FeedbackRequirementsType.php │ ├── FeesType.php │ ├── FlatShippingDiscountType.php │ ├── GiftSummaryType.php │ ├── InsuranceDetailsType.php │ ├── IntegratedMerchantCreditCardInfoType.php │ ├── InternationalShippingServiceOptionsType.php │ ├── InventoryFeesType.php │ ├── InventoryStatusType.php │ ├── ItemBidDetailsType.php │ ├── ItemCompatibilityListType.php │ ├── ItemCompatibilityType.php │ ├── ItemPolicyViolationType.php │ ├── ItemTransactionIDType.php │ ├── ItemType.php │ ├── LabelType.php │ ├── LineItemType.php │ ├── ListingCheckoutRedirectPreferenceType.php │ ├── ListingDesignerType.php │ ├── ListingDetailsType.php │ ├── ListingRecommendationType.php │ ├── ListingRecommendationsType.php │ ├── ListingTransactionType.php │ ├── LookupAttributeArrayType.php │ ├── LookupAttributeType.php │ ├── MaximumBuyerPolicyViolationsType.php │ ├── MaximumItemRequirementsType.php │ ├── MaximumUnpaidItemStrikesInfoType.php │ ├── MeasureType.php │ ├── MerchantDataRequestHeaderType.php │ ├── MerchantDataSellingStatusType.php │ ├── MerchantDataVariationType.php │ ├── MerchantDataVariationsType.php │ ├── MetadataType.php │ ├── ModifyNameArrayType.php │ ├── ModifyNameType.php │ ├── MultiLegShipmentType.php │ ├── MultiLegShippingDetailsType.php │ ├── MultiLegShippingServiceType.php │ ├── NameValueListArrayType.php │ ├── NameValueListType.php │ ├── NonUsageTransactionType.php │ ├── OrderAckRequestType.php │ ├── OrderAckResponseType.php │ ├── OrderArrayType.php │ ├── OrderDetailsType.php │ ├── OrderItemDetailsType.php │ ├── OrderLineItemType.php │ ├── OrderReportRequestType.php │ ├── OrderReportResponseType.php │ ├── OrderType.php │ ├── PaymentDetailsType.php │ ├── PaymentHoldDetailType.php │ ├── PaymentInformationType.php │ ├── PaymentTransactionType.php │ ├── PaymentsInformationType.php │ ├── PickupDetailsType.php │ ├── PickupInStoreDetailsType.php │ ├── PickupMethodSelectedType.php │ ├── PickupOptionsType.php │ ├── PictureDetailsType.php │ ├── PictureSetMemberType.php │ ├── PictureURLsType.php │ ├── PicturesType.php │ ├── ProStoresCheckoutPreferenceType.php │ ├── ProStoresDetailsType.php │ ├── ProductListingDetailsType.php │ ├── ProductSuggestionType.php │ ├── ProductSuggestionsType.php │ ├── PromotedItemType.php │ ├── PromotionDetailsType.php │ ├── PromotionalSaleDetailsType.php │ ├── PromotionalShippingDiscountDetailsType.php │ ├── QuantityInfoType.php │ ├── QuantityRestrictionPerBuyerInfoType.php │ ├── RateTableDetailsType.php │ ├── RecoupmentPolicyConsentType.php │ ├── RefundArrayType.php │ ├── RefundFailureReasonType.php │ ├── RefundFundingSourceArrayType.php │ ├── RefundFundingSourceType.php │ ├── RefundInformationType.php │ ├── RefundLineArrayType.php │ ├── RefundLineType.php │ ├── RefundTransactionArrayType.php │ ├── RefundTransactionInfoType.php │ ├── RefundTransactionType.php │ ├── RefundType.php │ ├── RelistFixedPriceItemRequestType.php │ ├── RelistFixedPriceItemResponseType.php │ ├── RelistItemRequestType.php │ ├── RelistItemResponseType.php │ ├── RequiredSellerActionArrayType.php │ ├── ReturnPolicyType.php │ ├── ReviseFixedPriceItemRequestType.php │ ├── ReviseFixedPriceItemResponseType.php │ ├── ReviseInventoryStatusRequestType.php │ ├── ReviseInventoryStatusResponseType.php │ ├── ReviseItemRequestType.php │ ├── ReviseItemResponseType.php │ ├── ReviseStatusType.php │ ├── SKUDetailsType.php │ ├── SalesTaxType.php │ ├── SchedulingInfoType.php │ ├── SearchDetailsType.php │ ├── SellerDiscountType.php │ ├── SellerDiscountsType.php │ ├── SellerPaymentProfileType.php │ ├── SellerProfilesType.php │ ├── SellerReturnProfileType.php │ ├── SellerShippingProfileType.php │ ├── SellerType.php │ ├── SellereBayPaymentProcessConsentCodeType.php │ ├── SellingManagerProductDetailsType.php │ ├── SellingManagerProductInventoryStatusType.php │ ├── SellingManagerVendorDetailsType.php │ ├── SellingStatusType.php │ ├── SetShipmentTrackingInfoRequestType.php │ ├── SetShipmentTrackingInfoResponseType.php │ ├── ShipPackageDetailsType.php │ ├── ShipmentLineItemType.php │ ├── ShipmentTrackingDetailsType.php │ ├── ShipmentType.php │ ├── ShippingDetailsType.php │ ├── ShippingPackageInfoType.php │ ├── ShippingServiceCostOverrideListType.php │ ├── ShippingServiceCostOverrideType.php │ ├── ShippingServiceOptionsType.php │ ├── SiteHostedPictureDetailsType.php │ ├── SoldReportRequestType.php │ ├── SoldReportResponseType.php │ ├── StorefrontType.php │ ├── SuggestedBidValueType.php │ ├── TaxDetailsType.php │ ├── TaxIdentifierAttributeType.php │ ├── TaxIdentifierType.php │ ├── TaxJurisdictionType.php │ ├── TaxTableType.php │ ├── TaxesType.php │ ├── TicketListingDetailsType.php │ ├── TopRatedSellerDetailsType.php │ ├── TransactionArrayType.php │ ├── TransactionListType.php │ ├── TransactionReferenceType.php │ ├── TransactionStatusType.php │ ├── TransactionType.php │ ├── UnitInfoType.php │ ├── UnpaidItemType.php │ ├── UploadSiteHostedPicturesRequestType.php │ ├── UploadSiteHostedPicturesResponseType.php │ ├── UserAgreementInfoType.php │ ├── UserIdentityType.php │ ├── UserType.php │ ├── VATDetailsType.php │ ├── ValType.php │ ├── VariationProductListingDetailsType.php │ ├── VariationSpecificPictureSetType.php │ ├── VariationType.php │ ├── VariationsType.php │ ├── VerifiedUserRequirementsType.php │ ├── VerifyAddFixedPriceItemRequestType.php │ ├── VerifyAddFixedPriceItemResponseType.php │ ├── VerifyAddItemRequestType.php │ ├── VerifyAddItemResponseType.php │ └── XMLRequesterCredentialsType.php ├── Metadata ├── Enums │ ├── CompatibilityTypeEnum.php │ ├── CompatibleVehicleTypeEnum.php │ └── CountryCodeEnum.php ├── Services │ ├── MetadataBaseService.php │ └── MetadataService.php └── Types │ ├── AutomotivePartsCompatibilityPolicy.php │ ├── AutomotivePartsCompatibilityPolicyResponse.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── GetPoliciesForAutoPartsCompatibilityRestRequest.php │ ├── GetPoliciesForAutoPartsCompatibilityRestResponse.php │ ├── GetPoliciesForItemConditionRestRequest.php │ ├── GetPoliciesForItemConditionRestResponse.php │ ├── GetPoliciesForListingStructuresRestRequest.php │ ├── GetPoliciesForListingStructuresRestResponse.php │ ├── GetPoliciesForNegotiatedPriceRestRequest.php │ ├── GetPoliciesForNegotiatedPriceRestResponse.php │ ├── GetPoliciesForReturnsRestRequest.php │ ├── GetPoliciesForReturnsRestResponse.php │ ├── GetSalesTaxJurisdictionsRestRequest.php │ ├── GetSalesTaxJurisdictionsRestResponse.php │ ├── ItemCondition.php │ ├── ItemConditionPolicy.php │ ├── ItemConditionPolicyResponse.php │ ├── ListingStructurePolicy.php │ ├── ListingStructurePolicyResponse.php │ ├── NegotiatedPricePolicy.php │ ├── NegotiatedPricePolicyResponse.php │ ├── ReturnPolicy.php │ ├── ReturnPolicyResponse.php │ ├── SalesTaxJurisdiction.php │ └── SalesTaxJurisdictions.php ├── OAuth ├── Services │ └── OAuthService.php └── Types │ ├── GetAppTokenRestRequest.php │ ├── GetAppTokenRestResponse.php │ ├── GetUserTokenRestRequest.php │ ├── GetUserTokenRestResponse.php │ ├── RefreshUserTokenRestRequest.php │ └── RefreshUserTokenRestResponse.php ├── Order ├── Enums │ ├── CountryCodeEnum.php │ ├── CurrencyCodeEnum.php │ ├── LineItemPaymentStatusEnum.php │ ├── LineItemStatusEnum.php │ ├── PaymentMethodBrandEnum.php │ ├── PaymentMethodTypeEnum.php │ ├── PurchaseOrderPaymentStatusEnum.php │ └── PurchaseOrderStatusEnum.php ├── Services │ ├── OrderBaseService.php │ └── OrderService.php └── Types │ ├── Adjustment.php │ ├── Amount.php │ ├── BillingAddress.php │ ├── CheckoutSessionResponse.php │ ├── CreateGuestCheckoutSessionRequest.php │ ├── CreateSignInCheckoutSessionRequest.php │ ├── CreditCard.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── GetCheckoutSessionRestRequest.php │ ├── GetCheckoutSessionRestResponse.php │ ├── GetGuestCheckoutSessionRestRequest.php │ ├── GetGuestCheckoutSessionRestResponse.php │ ├── GetGuestPurchaseOrderRestRequest.php │ ├── GetGuestPurchaseOrderRestResponse.php │ ├── GetPurchaseOrderRestRequest.php │ ├── GetPurchaseOrderRestResponse.php │ ├── GuestPurchaseOrder.php │ ├── Image.php │ ├── InitiateCheckoutSessionRestRequest.php │ ├── InitiateCheckoutSessionRestResponse.php │ ├── InitiateGuestCheckoutSessionRestRequest.php │ ├── InitiateGuestCheckoutSessionRestResponse.php │ ├── LineItem.php │ ├── LineItemInput.php │ ├── LineItemReference.php │ ├── PaymentInstrument.php │ ├── PaymentInstrumentReference.php │ ├── PaymentMethod.php │ ├── PaymentMethodBrand.php │ ├── PaymentMethodMessage.php │ ├── PlaceGuestOrderRestRequest.php │ ├── PlaceGuestOrderRestResponse.php │ ├── PlaceOrderRestRequest.php │ ├── PlaceOrderRestResponse.php │ ├── PricingSummary.php │ ├── Promotion.php │ ├── ProvidedPaymentInstrument.php │ ├── PurchaseOrder.php │ ├── PurchaseOrderSummary.php │ ├── Seller.php │ ├── ShippingAddress.php │ ├── ShippingAddressImpl.php │ ├── ShippingDetail.php │ ├── ShippingFulfillment.php │ ├── ShippingOption.php │ ├── UpdateGuestLineItemQuantityRestRequest.php │ ├── UpdateGuestLineItemQuantityRestResponse.php │ ├── UpdateGuestLineItemShippingAddressRestRequest.php │ ├── UpdateGuestLineItemShippingAddressRestResponse.php │ ├── UpdateGuestPaymentInfoRestRequest.php │ ├── UpdateGuestPaymentInfoRestResponse.php │ ├── UpdateGuestShippingOptionRestRequest.php │ ├── UpdateGuestShippingOptionRestResponse.php │ ├── UpdatePaymentInfoRestRequest.php │ ├── UpdatePaymentInfoRestResponse.php │ ├── UpdatePaymentInformation.php │ ├── UpdateQuantity.php │ ├── UpdateQuantityForLineItemRestRequest.php │ ├── UpdateQuantityForLineItemRestResponse.php │ ├── UpdateShippingAddressRestRequest.php │ ├── UpdateShippingAddressRestResponse.php │ ├── UpdateShippingOption.php │ ├── UpdateShippingOptionRestRequest.php │ └── UpdateShippingOptionRestResponse.php ├── Parser ├── JsonParser.php └── XmlParser.php ├── PostOrder ├── Enums │ ├── ActivityOptionEnum.php │ ├── AddressTypeEnum.php │ ├── AppealCloseReasonEnum.php │ ├── AppealGrantStatusEnum.php │ ├── AppealStatusEnum.php │ ├── BuyerCloseReasonEnum.php │ ├── BuyerCloseReturnReasonEnum.php │ ├── CancelActivityTypeEnum.php │ ├── CancelCloseReasonEnum.php │ ├── CancelReasonEnum.php │ ├── CancelSortTypeEnum.php │ ├── CancelStateEnum.php │ ├── CancelStatusEnum.php │ ├── CaseCloseReasonEnum.php │ ├── CaseSearchFieldGroupEnum.php │ ├── CaseStatusEnum.php │ ├── CaseTypeEnum.php │ ├── CloseReturnReasonEnum.php │ ├── CountryCodeEnum.php │ ├── CurrencyCodeEnum.php │ ├── DecisionEnum.php │ ├── DesiredOutcomeTypeEnum.php │ ├── DispositionRuleTemplateTypeEnum.php │ ├── EligibilityCheckTypeEnum.php │ ├── EligibilityFailureReasonEnum.php │ ├── EscalateReasonEnum.php │ ├── FileFormatEnum.php │ ├── FilePurposeEnum.php │ ├── FileStatusEnum.php │ ├── GetReturnFieldGroupEnum.php │ ├── InquiryEligibilityStatusEnum.php │ ├── InquiryEscalationReasonEnum.php │ ├── InquirySearchFieldGroupEnum.php │ ├── InquiryStateEnum.php │ ├── InquiryStatusEnum.php │ ├── LabelActionEnum.php │ ├── LabelPrintStatusEnum.php │ ├── LanguageEnum.php │ ├── LanguageScriptEnum.php │ ├── MarketplaceIdEnum.php │ ├── MoneyMovementStatusEnum.php │ ├── MoneyMovementTypeEnum.php │ ├── NoSellerUploadLabelReasonEnum.php │ ├── OrderTypeEnum.php │ ├── PartyEnum.php │ ├── PaymentDenialReasonEnum.php │ ├── PaymentProviderEnum.php │ ├── PaymentStatusEnum.php │ ├── RefundFeeTypeEnum.php │ ├── RefundPaymentTypeEnum.php │ ├── RefundStatusEnum.php │ ├── RequestTypeEnum.php │ ├── ReturnCountFilterEnum.php │ ├── ReturnHoldStatusEnum.php │ ├── ReturnMetadataKeyEnum.php │ ├── ReturnReasonEnum.php │ ├── ReturnRefundInitiatorEnum.php │ ├── ReturnSortEnum.php │ ├── ReturnStateEnum.php │ ├── ReturnStatusEnum.php │ ├── ReturnTypeEnum.php │ ├── ReturnUserRoleEnum.php │ ├── RuleListFieldGroupEnum.php │ ├── ShippingCarrierEnum.php │ ├── ShippingMethodEnum.php │ ├── TrackingStatusEnum.php │ ├── UserPartyEnum.php │ └── WorldRegionEnum.php ├── Services │ ├── PostOrderBaseService.php │ └── PostOrderService.php └── Types │ ├── ActionDeadlines.php │ ├── ActualRefundDetailType.php │ ├── AddShippingLabelInfoRestRequest.php │ ├── AddShippingLabelInfoRestResponse.php │ ├── Address.php │ ├── Amount.php │ ├── AppealCaseDecisionRestRequest.php │ ├── AppealCaseDecisionRestResponse.php │ ├── AppealDetails.php │ ├── AppealRequest.php │ ├── ApproveCancellationRequestRestRequest.php │ ├── ApproveCancellationRequestRestResponse.php │ ├── AvailableOptionType.php │ ├── BuyerCloseCaseRequest.php │ ├── BuyerCloseInquiryRequest.php │ ├── CancelActivityHistory.php │ ├── CancelDetail.php │ ├── CancelReturnRequestRestRequest.php │ ├── CancelReturnRequestRestResponse.php │ ├── CancelSortField.php │ ├── CancelSummary.php │ ├── CarrierShippingCostInfoType.php │ ├── CaseDetails.php │ ├── CaseDetailsResponse.php │ ├── CaseSearchResponse.php │ ├── CaseStatusFilter.php │ ├── CaseSummaryType.php │ ├── CaseVoluntaryRefundRequest.php │ ├── CheckCancellationEligibilityRestRequest.php │ ├── CheckCancellationEligibilityRestResponse.php │ ├── CheckEligibilityRequest.php │ ├── CheckEligibilityResponse.php │ ├── CheckInquiryEligibilityRequest.php │ ├── CheckInquiryEligibilityResponse.php │ ├── CheckInquiryEligibilityRestRequest.php │ ├── CheckInquiryEligibilityRestResponse.php │ ├── CheckLabelPrintEligibilityResponse.php │ ├── CheckReturnEligibilityRestRequest.php │ ├── CheckReturnEligibilityRestResponse.php │ ├── CheckShippingLabelEligibilityRestRequest.php │ ├── CheckShippingLabelEligibilityRestResponse.php │ ├── ClaimHistoryEventModel.php │ ├── ClaimHistoryResponse.php │ ├── CloseCaseRestRequest.php │ ├── CloseCaseRestResponse.php │ ├── CloseInquiryRestRequest.php │ ├── CloseInquiryRestResponse.php │ ├── CloseReturnRequest.php │ ├── ConditionDataRangeType.php │ ├── ConditionListDetailType.php │ ├── ConfirmCancellationRefundRestRequest.php │ ├── ConfirmCancellationRefundRestResponse.php │ ├── ConfirmInquiryRefundRestRequest.php │ ├── ConfirmInquiryRefundRestResponse.php │ ├── ConfirmRefundRequest.php │ ├── CountSummaryType.php │ ├── CreateCancelRequest.php │ ├── CreateCancelResponse.php │ ├── CreateCustomListRequest.php │ ├── CreateCustomListResponse.php │ ├── CreateCustomListRestRequest.php │ ├── CreateCustomListRestResponse.php │ ├── CreateDispositionRuleRequest.php │ ├── CreateDispositionRuleResponse.php │ ├── CreateInquiryRequest.php │ ├── CreateInquiryRestRequest.php │ ├── CreateInquiryRestResponse.php │ ├── CreateReturnDraftRestRequest.php │ ├── CreateReturnDraftRestResponse.php │ ├── CreateReturnRequest.php │ ├── CreateReturnRequestRestRequest.php │ ├── CreateReturnRequestRestResponse.php │ ├── CreateReturnResponse.php │ ├── CreateReturnRulesRestRequest.php │ ├── CreateReturnRulesRestResponse.php │ ├── CreateReturnShippingLabelRestRequest.php │ ├── CreateReturnShippingLabelRestResponse.php │ ├── CustomListDataType.php │ ├── CustomListDetailType.php │ ├── CustomListModificationType.php │ ├── CustomListType.php │ ├── DateTime.php │ ├── DecideReturnRequest.php │ ├── DecideReturnResponse.php │ ├── DeleteReturnDraftFileRestRequest.php │ ├── DeleteReturnDraftFileRestResponse.php │ ├── DeleteReturnFileRestRequest.php │ ├── DeleteReturnFileRestResponse.php │ ├── DispositionRuleDetailType.php │ ├── EligibilityErrorType.php │ ├── EligibilityResponseError.php │ ├── EligibilityResultType.php │ ├── Error.php │ ├── ErrorDetailV3.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── ErrorParameterV3.php │ ├── EscalateInquiryRequest.php │ ├── EscalateInquiryRestRequest.php │ ├── EscalateInquiryRestResponse.php │ ├── EscalateRequest.php │ ├── EscalateResponse.php │ ├── EscalateReturnRestRequest.php │ ├── EscalateReturnRestResponse.php │ ├── EscalationEligibilityInfo.php │ ├── EscalationInfoType.php │ ├── EstimatedRefundDetailType.php │ ├── EstimatedRefundInfoType.php │ ├── EstimatedRefundType.php │ ├── EstimatedShippingInfoType.php │ ├── FindCancelResponse.php │ ├── GetCancelDetailResponse.php │ ├── GetCancelFieldGroup.php │ ├── GetCancellationRestRequest.php │ ├── GetCancellationRestResponse.php │ ├── GetCaseRestRequest.php │ ├── GetCaseRestResponse.php │ ├── GetCustomListDetailResponse.php │ ├── GetCustomListRestResponse.php │ ├── GetCustomListsResponse.php │ ├── GetCustomListsRestResponse.php │ ├── GetDetailResponse.php │ ├── GetDispositionRuleDetailResponse.php │ ├── GetDispositionRuleTemplatesResponse.php │ ├── GetDispositionRuleTriggerHistResponse.php │ ├── GetDispositionRulesResponse.php │ ├── GetEstimateRequest.php │ ├── GetEstimateResponse.php │ ├── GetFileResponse.php │ ├── GetInquiryRestRequest.php │ ├── GetInquiryRestResponse.php │ ├── GetMetadataResponse.php │ ├── GetReturnCreationSessionResponse.php │ ├── GetReturnDraftFilesRestRequest.php │ ├── GetReturnDraftFilesRestResponse.php │ ├── GetReturnDraftRestRequest.php │ ├── GetReturnDraftRestResponse.php │ ├── GetReturnEstimateRestRequest.php │ ├── GetReturnEstimateRestResponse.php │ ├── GetReturnFilesRestRequest.php │ ├── GetReturnFilesRestResponse.php │ ├── GetReturnMetadataRestRequest.php │ ├── GetReturnMetadataRestResponse.php │ ├── GetReturnPreferencesRestResponse.php │ ├── GetReturnRestRequest.php │ ├── GetReturnRestResponse.php │ ├── GetReturnRuleHistoryRestRequest.php │ ├── GetReturnRuleHistoryRestResponse.php │ ├── GetReturnRuleRestRequest.php │ ├── GetReturnRuleRestResponse.php │ ├── GetReturnRuleTemplatesRestResponse.php │ ├── GetReturnRulesRestRequest.php │ ├── GetReturnRulesRestResponse.php │ ├── GetReturnShippingLabelRestRequest.php │ ├── GetReturnShippingLabelRestResponse.php │ ├── GetSellerReturnPreferenceResponse.php │ ├── GetShipmentTrackingRestRequest.php │ ├── GetShipmentTrackingRestResponse.php │ ├── GetShippingLabelResponse.php │ ├── GetStoreCategoriesRestResponse.php │ ├── GetStoreCategoryResponse.php │ ├── GetSummaryResponse.php │ ├── GetTrackingHistoryResponse.php │ ├── InitiateShippingLabelResponse.php │ ├── InquiryDetails.php │ ├── InquiryDetailsResponse.php │ ├── InquirySearchResponse.php │ ├── InquiryStatusFilter.php │ ├── InquirySummaryType.php │ ├── InquiryVoluntaryRefundRequest.php │ ├── IssueCaseRefundRestRequest.php │ ├── IssueCaseRefundRestResponse.php │ ├── IssueInquiryRefundRestRequest.php │ ├── IssueInquiryRefundRestResponse.php │ ├── IssueRefundRequest.php │ ├── IssueRefundResponse.php │ ├── IssueReturnRefundRestRequest.php │ ├── IssueReturnRefundRestResponse.php │ ├── ItemDetailType.php │ ├── ItemDetails.php │ ├── ItemEligibilityResult.php │ ├── ItemizedRefundDetailType.php │ ├── ItemizedReturnShippingCostType.php │ ├── ListDataType.php │ ├── MarkAsReceivedRequest.php │ ├── MarkAsShippedRequest.php │ ├── MarkRefundSentRequest.php │ ├── MarkReturnReceivedRestRequest.php │ ├── MarkReturnReceivedRestResponse.php │ ├── MarkReturnRefundReceivedRestRequest.php │ ├── MarkReturnRefundReceivedRestResponse.php │ ├── MarkReturnRefundSentRestRequest.php │ ├── MarkReturnRefundSentRestResponse.php │ ├── MarkReturnShippedRestRequest.php │ ├── MarkReturnShippedRestResponse.php │ ├── ModifyCustomListRequest.php │ ├── ModifyCustomListResponse.php │ ├── ModifyDispositionRuleRequest.php │ ├── MoneyMovementDetailType.php │ ├── MoneyMovementEntries.php │ ├── MoneyMovementEntry.php │ ├── MoneyMovementRef.php │ ├── OrderCancelLineItem.php │ ├── OrderEligibilityCheckInfo.php │ ├── OrderEligibilityResult.php │ ├── PaginationOutput.php │ ├── PriorityListType.php │ ├── ProcessReturnRequestRestRequest.php │ ├── ProcessReturnRequestRestResponse.php │ ├── ProvideInquiryRefundInfoRestRequest.php │ ├── ProvideInquiryRefundInfoRestResponse.php │ ├── ProvideInquiryShipmentInfoRestRequest.php │ ├── ProvideInquiryShipmentInfoRestResponse.php │ ├── ProvideLabelRequest.php │ ├── ProvideLabelResponse.php │ ├── ProvideReturnShipmentInfoRestRequest.php │ ├── ProvideReturnShipmentInfoRestResponse.php │ ├── ProvideShipmentInfoRequest.php │ ├── ProvidesReturnAddressRestRequest.php │ ├── ProvidesReturnAddressRestResponse.php │ ├── RefundAmounts.php │ ├── RefundDetailType.php │ ├── RefundInfoType.php │ ├── RefundType.php │ ├── RejectCancelRequest.php │ ├── RejectCancellationRequestRestRequest.php │ ├── RejectCancellationRequestRestResponse.php │ ├── ResponseHistoryAttributesType.php │ ├── ReturnAddress.php │ ├── ReturnAddressRequest.php │ ├── ReturnAddressType.php │ ├── ReturnCloseInfoType.php │ ├── ReturnCreationInfoType.php │ ├── ReturnDetailType.php │ ├── ReturnEligibilityErrorDetailType.php │ ├── ReturnEligibilityItemPerCheckTypeResult.php │ ├── ReturnEligibilityItemType.php │ ├── ReturnEligibilityPerItemType.php │ ├── ReturnFileType.php │ ├── ReturnHoldInfoType.php │ ├── ReturnItemType.php │ ├── ReturnMetadataType.php │ ├── ReturnPolicyType.php │ ├── ReturnRequestType.php │ ├── ReturnResponseDueType.php │ ├── ReturnResponseHistoryType.php │ ├── ReturnShippingCostDetailType.php │ ├── ReturnShippingCostType.php │ ├── ReturnSortField.php │ ├── ReturnSummaryType.php │ ├── RuleActionDataDetailType.php │ ├── RuleActionDataType.php │ ├── RuleActionDetailType.php │ ├── RuleActionInputType.php │ ├── RuleConditionDetailType.php │ ├── RuleConditionInputType.php │ ├── RuleDetailInputType.php │ ├── RuleDetailType.php │ ├── RuleModificationType.php │ ├── RuleSummaryType.php │ ├── RuleTemplateDetailType.php │ ├── RuleTriggerHistDetailType.php │ ├── ScanDetailType.php │ ├── SearchCancellationsRestRequest.php │ ├── SearchCancellationsRestResponse.php │ ├── SearchCasesRestRequest.php │ ├── SearchCasesRestResponse.php │ ├── SearchInquiriesRestRequest.php │ ├── SearchInquiriesRestResponse.php │ ├── SearchReturnsRestRequest.php │ ├── SearchReturnsRestResponse.php │ ├── SellerProvideRefundInfoRequest.php │ ├── SendInquiryMessageRestRequest.php │ ├── SendInquiryMessageRestResponse.php │ ├── SendMessageRequest.php │ ├── SendReturnMessageRestRequest.php │ ├── SendReturnMessageRestResponse.php │ ├── SendReturnShippingLabelRestRequest.php │ ├── SendReturnShippingLabelRestResponse.php │ ├── SendShippingLabelResponse.php │ ├── SetReturnCreationSessionRequest.php │ ├── SetReturnCreationSessionResponse.php │ ├── SetReturnPreferencesRestRequest.php │ ├── SetReturnPreferencesRestResponse.php │ ├── SetSellerReturnPreferenceRequest.php │ ├── ShipmentInfoRequest.php │ ├── ShipmentTrackingDetailType.php │ ├── ShipmentTrackingType.php │ ├── ShipmentType.php │ ├── StatusType.php │ ├── StoreCategoryType.php │ ├── SubmitCancellationRequestRestRequest.php │ ├── SubmitCancellationRequestRestResponse.php │ ├── SubmitFileRequest.php │ ├── SubmitFileResponse.php │ ├── SubmitReturnFileRestRequest.php │ ├── SubmitReturnFileRestResponse.php │ ├── Text.php │ ├── TotalRefundAmountType.php │ ├── UpdateCustomListRestRequest.php │ ├── UpdateCustomListRestResponse.php │ ├── UpdateReturnDraftRestRequest.php │ ├── UpdateReturnDraftRestResponse.php │ ├── UpdateReturnRulesRestRequest.php │ ├── UpdateReturnRulesRestResponse.php │ ├── UpdateShipmentTrackingRestRequest.php │ ├── UpdateShipmentTrackingRestResponse.php │ ├── UpdateTrackingRequest.php │ ├── UploadFileRequest.php │ ├── UploadFileResponse.php │ ├── UploadReturnDraftFileRestRequest.php │ ├── UploadReturnDraftFileRestResponse.php │ ├── UploadReturnFileRestRequest.php │ ├── UploadReturnFileRestResponse.php │ ├── VoidLabelRequest.php │ ├── VoidShippingLabelRestRequest.php │ ├── VoidShippingLabelRestResponse.php │ ├── VoluntaryRefundResponse.php │ └── VoluntaryRefundResult.php ├── Product ├── Enums │ ├── AckValue.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── MediaType.php │ ├── OrderType.php │ ├── OutputSelector.php │ ├── ProductSubmissionStatusCode.php │ ├── SortPriority.php │ └── SortType.php ├── Services │ ├── ProductBaseService.php │ └── ProductService.php └── Types │ ├── AddProductResponse.php │ ├── AddProductsRequest.php │ ├── AddProductsResponse.php │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── CompatibilityDetails.php │ ├── CompatibilityPropertyFilter.php │ ├── CompatibilitySort.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── FindCompatibilitiesBySpecificationRequest.php │ ├── FindCompatibilitiesBySpecificationResponse.php │ ├── FindProductsByCompatibilityRequest.php │ ├── FindProductsRequest.php │ ├── FindProductsResponse.php │ ├── GetProductCompatibilitiesRequest.php │ ├── GetProductCompatiblitiesResponse.php │ ├── GetProductDetailsRequest.php │ ├── GetProductDetailsResponse.php │ ├── GetProductSubmissionsRequest.php │ ├── GetProductSubmissionsResponse.php │ ├── Media.php │ ├── MediaIdentifier.php │ ├── Notes.php │ ├── NumericValue.php │ ├── PaginationInput.php │ ├── PaginationOutput.php │ ├── Product.php │ ├── ProductByCompatibilityRequest.php │ ├── ProductDetailsRequestType.php │ ├── ProductIdentifier.php │ ├── ProductRequest.php │ ├── ProductResponse.php │ ├── ProductStatus.php │ ├── ProductSubmission.php │ ├── ProductSubmissionFilter.php │ ├── ProductSubmissionResult.php │ ├── ProductSubmissionStatus.php │ ├── PropertyValue.php │ ├── SortOption.php │ ├── SortOrder.php │ ├── StockPhotoURL.php │ ├── StringValue.php │ ├── URIValue.php │ └── Value.php ├── ProductMetadata ├── Enums │ ├── AckValue.php │ ├── DatasetValue.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ └── OrderType.php ├── Services │ ├── ProductMetadataBaseService.php │ └── ProductMetadataService.php └── Types │ ├── BaseRequest.php │ ├── BaseResponse.php │ ├── BaseServiceRequest.php │ ├── BaseServiceResponse.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── ExtensionType.php │ ├── GetCompatibilitySearchDataVersionRequest.php │ ├── GetCompatibilitySearchDataVersionResponse.php │ ├── GetCompatibilitySearchNamesRequest.php │ ├── GetCompatibilitySearchNamesResponse.php │ ├── GetCompatibilitySearchValuesBulkRequest.php │ ├── GetCompatibilitySearchValuesBulkResponse.php │ ├── GetCompatibilitySearchValuesRequest.php │ ├── GetCompatibilitySearchValuesResponse.php │ ├── GetProductSearchDataVersionRequest.php │ ├── GetProductSearchDataVersionResponse.php │ ├── GetProductSearchNamesRequest.php │ ├── GetProductSearchNamesResponse.php │ ├── GetProductSearchValuesBaseRequest.php │ ├── GetProductSearchValuesBulkRequest.php │ ├── GetProductSearchValuesBulkResponse.php │ ├── GetProductSearchValuesRequest.php │ ├── GetProductSearchValuesResponse.php │ ├── GroupProperties.php │ ├── GroupProperty.php │ ├── MediaTypeSpecificInformation.php │ ├── NumericTypeSpecificInformation.php │ ├── NumericValue.php │ ├── ProductMetadata.php │ ├── ProductMetadataBulkRequest.php │ ├── ProductMetadataBulkResponse.php │ ├── ProductMetadataRequest.php │ ├── ProductMetadataResponse.php │ ├── Properties.php │ ├── Property.php │ ├── PropertyMetadata.php │ ├── PropertyNameMetadata.php │ ├── PropertyNameValue.php │ ├── PropertyValue.php │ ├── SortOrder.php │ ├── StringTypeSpecificInformation.php │ ├── StringValue.php │ ├── Tag.php │ ├── TypeSpecificInformation.php │ ├── URITypeSpecificInformation.php │ ├── URIValue.php │ ├── Value.php │ └── VersionDetails.php ├── RelatedItemsManagement ├── Enums │ ├── AckValue.php │ ├── BundleDetailEnum.php │ ├── BundleStatusEnum.php │ ├── DiscountTypeEnum.php │ ├── ErrorCategory.php │ └── ErrorSeverity.php ├── Services │ ├── RelatedItemsManagementBaseService.php │ └── RelatedItemsManagementService.php └── Types │ ├── Amount.php │ ├── BaseRequest.php │ ├── BaseResponse.php │ ├── Bundle.php │ ├── BundleFilter.php │ ├── BundleStatus.php │ ├── BundleStatusMap.php │ ├── CreateBundlesRequest.php │ ├── CreateBundlesResponse.php │ ├── DeleteBundlesRequest.php │ ├── DeleteBundlesResponse.php │ ├── Discount.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── ExtensionType.php │ ├── FindBundlesRequest.php │ ├── FindBundlesResponse.php │ ├── GetBundlesRequest.php │ ├── GetBundlesResponse.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── RelatedProduct.php │ ├── RelatedProductGroup.php │ ├── UpdateBundleStatusRequest.php │ ├── UpdateBundleStatusResponse.php │ ├── UpdateBundlesRequest.php │ └── UpdateBundlesResponse.php ├── ResolutionCaseManagement ├── Enums │ ├── AckValue.php │ ├── AppealDecisionType.php │ ├── AppealReasonType.php │ ├── BuyerINREscalationReasonType.php │ ├── BuyerSNADEscalationReasonType.php │ ├── CancelTransactionCaseStatusType.php │ ├── CaseDecisionType.php │ ├── CaseSortOrderType.php │ ├── CaseStatusInputType.php │ ├── CaseType.php │ ├── CaseUserRoleType.php │ ├── EBPINRCaseStatusType.php │ ├── EBPSNADCaseStatusType.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── INRCaseStatusType.php │ ├── IsoCurrencyCode.php │ ├── MoneyMovementStatusType.php │ ├── MoneyMovementType.php │ ├── NotificationEventNameType.php │ ├── PaymentMethodType.php │ ├── PaypalINRCaseStatusType.php │ ├── PaypalSNADCaseStatusType.php │ ├── ProofType.php │ ├── RefundStatusType.php │ ├── ReturnCaseStatusType.php │ ├── SNADCaseStatusType.php │ ├── SellerINREscalationReasonType.php │ ├── SellerSNADEscalationReasonType.php │ └── UPICaseStatusType.php ├── Services │ ├── ResolutionCaseManagementBaseService.php │ └── ResolutionCaseManagementService.php └── Types │ ├── ActivityDetailType.php │ ├── ActivityOptionListType.php │ ├── Address.php │ ├── Amount.php │ ├── AppealRef.php │ ├── AppealToCustomerSupportOptionType.php │ ├── AppealToCustomerSupportRequest.php │ ├── AppealToCustomerSupportResponse.php │ ├── AppealType.php │ ├── BaseActivityOptionType.php │ ├── BaseRequest.php │ ├── BaseResponse.php │ ├── CaseArrayType.php │ ├── CaseIdType.php │ ├── CaseStatusFilterType.php │ ├── CaseStatusType.php │ ├── CaseSummaryType.php │ ├── CaseTypeFilterType.php │ ├── CaseUserType.php │ ├── ContactCustomerSupportOptionType.php │ ├── DateRangeFilterType.php │ ├── DecisionReasonDetailType.php │ ├── DetailStatusInfoType.php │ ├── EBPCaseDetailType.php │ ├── EBPCaseDocumentInfoType.php │ ├── EBPCaseResponseHistoryType.php │ ├── EnumerationDetailType.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── EscalateToCustomerSupportOptionType.php │ ├── EscalateToCustomerSupportRequest.php │ ├── EscalateToCustomerSupportResponse.php │ ├── EscalationReasonType.php │ ├── ExtensionType.php │ ├── GetActivityOptionsRequest.php │ ├── GetActivityOptionsResponse.php │ ├── GetEBPCaseDetailRequest.php │ ├── GetEBPCaseDetailResponse.php │ ├── GetUserCasesRequest.php │ ├── GetUserCasesResponse.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── InitialBuyerExpectationDetailType.php │ ├── IssueFullRefundOptionType.php │ ├── IssueFullRefundRequest.php │ ├── IssueFullRefundResponse.php │ ├── IssuePartialRefundOptionType.php │ ├── IssuePartialRefundRequest.php │ ├── IssuePartialRefundResponse.php │ ├── ItemFilterType.php │ ├── ItemType.php │ ├── Money.php │ ├── MoneyMovementDetailType.php │ ├── MoneyMovementRef.php │ ├── NotificationEventType.php │ ├── OfferOtherSolutionOptionType.php │ ├── OfferOtherSolutionRequest.php │ ├── OfferOtherSolutionResponse.php │ ├── OfferPartialRefundRequest.php │ ├── OfferPartialRefundResponse.php │ ├── OfferRefundUponReturnRequest.php │ ├── OfferRefundUponReturnResponse.php │ ├── OnHoldReasonDetailType.php │ ├── PaginationInput.php │ ├── PaginationOutput.php │ ├── PaymentDetailType.php │ ├── ProvideRefundInfoOptionType.php │ ├── ProvideRefundInfoRequest.php │ ├── ProvideRefundInfoResponse.php │ ├── ProvideReturnInfoRequest.php │ ├── ProvideReturnInfoResponse.php │ ├── ProvideShippingInfoOptionType.php │ ├── ProvideShippingInfoRequest.php │ ├── ProvideShippingInfoResponse.php │ ├── ProvideShippingOrTrackingInfoOptionType.php │ ├── ProvideTrackingInfoOptionType.php │ ├── ProvideTrackingInfoRequest.php │ ├── ProvideTrackingInfoResponse.php │ ├── RequestBuyerToReturnOptionType.php │ ├── ResponseHistoryAttributesType.php │ ├── ShipmentType.php │ ├── UploadDocumentInfoType.php │ ├── UploadDocumentsRequest.php │ └── UploadDocumentsResponse.php ├── ReturnManagement ├── Enums │ ├── AckValue.php │ ├── ActivityOptionType.php │ ├── CaseType.php │ ├── CloseReturnReasonType.php │ ├── ErrorCategory.php │ ├── ErrorSeverity.php │ ├── MetadataCodeType.php │ ├── MetadataEntryType.php │ ├── NotificationEventNameType.php │ ├── RefundFeeType.php │ ├── RefundStatusType.php │ ├── ReturnSortOrderType.php │ ├── ReturnSortType.php │ ├── ReturnStatusInputType.php │ ├── ReturnStatusType.php │ ├── ReturnType.php │ ├── ReturnUserRoleType.php │ ├── ShipmentStatusType.php │ ├── StatusType.php │ ├── TrackingStatusType.php │ └── UserFilterRoleType.php ├── Services │ ├── ReturnManagementBaseService.php │ └── ReturnManagementService.php └── Types │ ├── ActivityDetailType.php │ ├── ActivityOptionListType.php │ ├── ActualRefundDetailType.php │ ├── Address.php │ ├── Amount.php │ ├── BaseActivityOptionType.php │ ├── BaseRequest.php │ ├── BaseResponse.php │ ├── CaseIdType.php │ ├── DateRangeFilterType.php │ ├── EnumerationDetailType.php │ ├── ErrorData.php │ ├── ErrorMessage.php │ ├── ErrorParameter.php │ ├── EstimatedRefundDetailType.php │ ├── ExtensionType.php │ ├── GetActivityOptionsRequest.php │ ├── GetActivityOptionsResponse.php │ ├── GetReturnDetailRequest.php │ ├── GetReturnDetailResponse.php │ ├── GetReturnMetadataRequest.php │ ├── GetReturnMetadataResponse.php │ ├── GetUserReturnsRequest.php │ ├── GetUserReturnsResponse.php │ ├── GetVersionRequest.php │ ├── GetVersionResponse.php │ ├── IssueRefundOptionType.php │ ├── IssueRefundRequest.php │ ├── IssueRefundResponse.php │ ├── ItemFilterType.php │ ├── ItemizedRefundDetailType.php │ ├── MetaDataCodeResultType.php │ ├── NotificationEventType.php │ ├── PaginationInput.php │ ├── PaginationOutput.php │ ├── ProvideSellerInfoOptionType.php │ ├── ProvideSellerInfoRequest.php │ ├── ProvideSellerInfoResponse.php │ ├── ProvideTrackingInfoRequest.php │ ├── ProvideTrackingInfoResponse.php │ ├── RefundDetailType.php │ ├── RefundInfoType.php │ ├── ReturnArrayType.php │ ├── ReturnDetailType.php │ ├── ReturnIdType.php │ ├── ReturnItemType.php │ ├── ReturnPolicyInfoType.php │ ├── ReturnReasonType.php │ ├── ReturnRequestType.php │ ├── ReturnResponseDueType.php │ ├── ReturnResponseHistoryType.php │ ├── ReturnStatusFilterType.php │ ├── ReturnSummaryType.php │ ├── ReturnUserType.php │ ├── SetItemAsReceivedRequest.php │ ├── SetItemAsReceivedResponse.php │ ├── ShipmentType.php │ ├── TotalRefundAmountType.php │ └── UserFilterType.php ├── Sdk.php ├── Services ├── BaseRestService.php └── BaseService.php ├── Shopping ├── Enums │ ├── AckCodeType.php │ ├── BuyerPaymentMethodCodeType.php │ ├── CharityStatusCodeType.php │ ├── CommentTypeCodeType.php │ ├── CountryCodeType.php │ ├── CurrencyCodeType.php │ ├── ErrorClassificationCodeType.php │ ├── ExternalProductCodeType.php │ ├── FeedbackRatingDetailCodeType.php │ ├── FeedbackRatingStarCodeType.php │ ├── HalfItemConditionCodeType.php │ ├── InsuranceOptionCodeType.php │ ├── ListingStatusCodeType.php │ ├── ListingTypeCodeType.php │ ├── MinimumAdvertisedPriceExposureCodeType.php │ ├── PricingTreatmentCodeType.php │ ├── ProductIDCodeType.php │ ├── ProductSortCodeType.php │ ├── ProductStateCodeType.php │ ├── QuantityAvailableHintCodeType.php │ ├── ReviewSortCodeType.php │ ├── SellerBusinessCodeType.php │ ├── SellerLevelCodeType.php │ ├── SeverityCodeType.php │ ├── ShippingTypeCodeType.php │ ├── SiteCodeType.php │ ├── SortOrderCodeType.php │ ├── TradingRoleCodeType.php │ └── UserStatusCodeType.php ├── Services │ ├── ShoppingBaseService.php │ └── ShoppingService.php └── Types │ ├── AbstractRequestType.php │ ├── AbstractResponseType.php │ ├── AddressType.php │ ├── AmountType.php │ ├── AverageRatingDetailsType.php │ ├── BusinessSellerDetailsType.php │ ├── BuyingGuideDetailsType.php │ ├── BuyingGuideType.php │ ├── CatalogProductType.php │ ├── CategoryArrayType.php │ ├── CategoryType.php │ ├── CharityType.php │ ├── DiscountPriceInfoType.php │ ├── DistanceType.php │ ├── DomainHistogramType.php │ ├── ErrorParameterType.php │ ├── ErrorType.php │ ├── ExternalProductIDType.php │ ├── FeedbackDetailType.php │ ├── FeedbackHistoryType.php │ ├── FeedbackPeriodType.php │ ├── FindHalfProductsRequestType.php │ ├── FindHalfProductsResponseType.php │ ├── FindPopularItemsRequestType.php │ ├── FindPopularItemsResponseType.php │ ├── FindPopularSearchesRequestType.php │ ├── FindPopularSearchesResponseType.php │ ├── FindProductsRequestType.php │ ├── FindProductsResponseType.php │ ├── FindReviewsAndGuidesRequestType.php │ ├── FindReviewsAndGuidesResponseType.php │ ├── GetCategoryInfoRequestType.php │ ├── GetCategoryInfoResponseType.php │ ├── GetItemStatusRequestType.php │ ├── GetItemStatusResponseType.php │ ├── GetMultipleItemsRequestType.php │ ├── GetMultipleItemsResponseType.php │ ├── GetShippingCostsRequestType.php │ ├── GetShippingCostsResponseType.php │ ├── GetSingleItemRequestType.php │ ├── GetSingleItemResponseType.php │ ├── GetUserProfileRequestType.php │ ├── GetUserProfileResponseType.php │ ├── GeteBayTimeRequestType.php │ ├── GeteBayTimeResponseType.php │ ├── HalfCatalogProductType.php │ ├── HalfProductsType.php │ ├── HistogramEntryType.php │ ├── InternationalShippingServiceOptionType.php │ ├── ItemCompatibilityListType.php │ ├── ItemCompatibilityType.php │ ├── NameValueListArrayType.php │ ├── NameValueListType.php │ ├── PickUpInStoreDetailsType.php │ ├── PicturesType.php │ ├── PopularSearchesType.php │ ├── ProductIDType.php │ ├── QuantityInfo.php │ ├── ReturnPolicyType.php │ ├── ReviewDetailsType.php │ ├── ReviewType.php │ ├── SalesTaxType.php │ ├── SellingStatusType.php │ ├── ShippingCostSummaryType.php │ ├── ShippingDetailsType.php │ ├── ShippingServiceOptionType.php │ ├── SimpleItemArrayType.php │ ├── SimpleItemType.php │ ├── SimpleUserType.php │ ├── StorefrontType.php │ ├── TaxJurisdictionType.php │ ├── TaxTableType.php │ ├── UnitInfoType.php │ ├── VATDetailsType.php │ ├── VariationSpecificPictureSetType.php │ ├── VariationType.php │ └── VariationsType.php ├── StatusCodeTrait.php ├── Taxonomy ├── Enums │ ├── AspectDataTypeEnum.php │ ├── AspectModeEnum.php │ ├── ItemToAspectCardinalityEnum.php │ └── MarketplaceIdEnum.php ├── Services │ ├── TaxonomyBaseService.php │ └── TaxonomyService.php └── Types │ ├── AncestorReference.php │ ├── Aspect.php │ ├── AspectConstraint.php │ ├── AspectMetadata.php │ ├── AspectValue.php │ ├── BaseCategoryTree.php │ ├── Category.php │ ├── CategorySubtree.php │ ├── CategorySuggestion.php │ ├── CategorySuggestionResponse.php │ ├── CategoryTree.php │ ├── CategoryTreeNode.php │ ├── ErrorDetailV3.php │ ├── ErrorParameterV3.php │ ├── GetACategorySubtreeRestRequest.php │ ├── GetACategorySubtreeRestResponse.php │ ├── GetACategoryTreeRestRequest.php │ ├── GetACategoryTreeRestResponse.php │ ├── GetADefaultCategoryTreeIdRestRequest.php │ ├── GetADefaultCategoryTreeIdRestResponse.php │ ├── GetItemAspectsForCategoryRestRequest.php │ ├── GetItemAspectsForCategoryRestResponse.php │ ├── GetSuggestedCategoriesRestRequest.php │ ├── GetSuggestedCategoriesRestResponse.php │ └── ValueConstraint.php ├── Trading ├── Enums │ ├── AccessRuleCurrentStatusCodeType.php │ ├── AccessRuleStatusCodeType.php │ ├── AccountDetailEntryCodeType.php │ ├── AccountEntrySortTypeCodeType.php │ ├── AccountHistorySelectionCodeType.php │ ├── AccountStateCodeType.php │ ├── AckCodeType.php │ ├── AdFormatEnabledCodeType.php │ ├── AdFormatLeadStatusCodeType.php │ ├── AddressAttributeCodeType.php │ ├── AddressOwnerCodeType.php │ ├── AddressRecordTypeCodeType.php │ ├── AddressStatusCodeType.php │ ├── AddressTypeCodeType.php │ ├── AddressUsageCodeType.php │ ├── AnnouncementMessageCodeType.php │ ├── ApplicationDeviceTypeCodeType.php │ ├── AspectUsageCodeType.php │ ├── AttributeConversionEnabledCodeType.php │ ├── AuthTokenTypeCodeType.php │ ├── AutomatedLeaveFeedbackEventCodeType.php │ ├── BalanceCodeType.php │ ├── BestOfferActionCodeType.php │ ├── BestOfferStatusCodeType.php │ ├── BestOfferTypeCodeType.php │ ├── BidActionCodeType.php │ ├── BidGroupItemStatusCodeType.php │ ├── BidGroupStatusCodeType.php │ ├── BidderStatusCodeType.php │ ├── BidderTypeCodeType.php │ ├── BoldTitleCodeType.php │ ├── BorderCodeType.php │ ├── BulkCatalogListerStatusCodeType.php │ ├── BusinessRoleType.php │ ├── BuyerPaymentInstrumentCodeType.php │ ├── BuyerPaymentMethodCodeType.php │ ├── BuyerProtectionCodeType.php │ ├── BuyerProtectionSourceCodeType.php │ ├── BuyerSatisfactionStatusCodeType.php │ ├── CalculatedShippingChargeOptionCodeType.php │ ├── CalculatedShippingRateOptionCodeType.php │ ├── CancelInitiatorCodeType.php │ ├── CancelReasonCodeType.php │ ├── CancelStatusCodeType.php │ ├── CharacteristicsSearchCodeType.php │ ├── CharityAffiliationTypeCodeType.php │ ├── CharitySellerStatusCodeType.php │ ├── CharityStatusCodeType.php │ ├── CheckoutMethodCodeType.php │ ├── CheckoutStatusCodeType.php │ ├── ClassifiedAdBestOfferEnabledCodeType.php │ ├── ClassifiedAdPaymentMethodEnabledCodeType.php │ ├── CombinedPaymentOptionCodeType.php │ ├── CombinedPaymentPeriodCodeType.php │ ├── CommentTypeCodeType.php │ ├── CompleteStatusCodeType.php │ ├── ConditionEnabledCodeType.php │ ├── CostGroupFlatCodeType.php │ ├── CountryCodeType.php │ ├── CurrencyCodeType.php │ ├── DayOfWeekCodeType.php │ ├── DaysCodeType.php │ ├── DeliveryMethodCodeType.php │ ├── DeliveryStatusEmailCodeType.php │ ├── DepositTypeCodeType.php │ ├── DescriptionReviseModeCodeType.php │ ├── DescriptionTemplateCodeType.php │ ├── DetailLevelCodeType.php │ ├── DetailNameCodeType.php │ ├── DeviceTypeCodeType.php │ ├── DigitalStatusCodeType.php │ ├── DiscountCodeType.php │ ├── DiscountNameCodeType.php │ ├── DiscountReasonCodeType.php │ ├── DisplayPayNowButtonCodeType.php │ ├── DisputeActivityCodeType.php │ ├── DisputeCreditEligibilityCodeType.php │ ├── DisputeExplanationCodeType.php │ ├── DisputeFilterTypeCodeType.php │ ├── DisputeMessageSourceCodeType.php │ ├── DisputeReasonCodeType.php │ ├── DisputeRecordTypeCodeType.php │ ├── DisputeResolutionReasonCodeType.php │ ├── DisputeResolutionRecordTypeCodeType.php │ ├── DisputeSortTypeCodeType.php │ ├── DisputeStateCodeType.php │ ├── DisputeStatusCodeType.php │ ├── EBaySubscriptionTypeCodeType.php │ ├── EnableCodeType.php │ ├── EndOfAuctionLogoTypeCodeType.php │ ├── EndReasonCodeType.php │ ├── ErrorClassificationCodeType.php │ ├── ErrorHandlingCodeType.php │ ├── EscrowCodeType.php │ ├── ExternalProductCodeType.php │ ├── FeatureIDCodeType.php │ ├── FeaturedFirstCodeType.php │ ├── FeaturedPlusCodeType.php │ ├── FedExRateOptionCodeType.php │ ├── FeedbackRatingDetailCodeType.php │ ├── FeedbackRatingStarCodeType.php │ ├── FeedbackResponseCodeType.php │ ├── FeedbackSummaryPeriodCodeType.php │ ├── FeedbackTypeCodeType.php │ ├── FlatRateInsuranceRangeCodeType.php │ ├── FlatShippingRateOptionCodeType.php │ ├── GallerySortFilterCodeType.php │ ├── GalleryStatusCodeType.php │ ├── GalleryTypeCodeType.php │ ├── GeneralPaymentMethodCodeType.php │ ├── GeographicExposureCodeType.php │ ├── GetAllBiddersModeCodeType.php │ ├── GiftIconCodeType.php │ ├── GranularityLevelCodeType.php │ ├── HandlingNameCodeType.php │ ├── HighlightCodeType.php │ ├── HitCounterCodeType.php │ ├── HomePageFeaturedCodeType.php │ ├── INEscrowWorkflowTimelineCodeType.php │ ├── InquiryStatusCodeType.php │ ├── InsuranceOptionCodeType.php │ ├── InsuranceSelectedCodeType.php │ ├── InventoryTrackingMethodCodeType.php │ ├── InvocationStatusType.php │ ├── ItemArrivedWithinEDDCodeType.php │ ├── ItemCompatibilityEnabledCodeType.php │ ├── ItemConditionCodeType.php │ ├── ItemFormatSortFilterCodeType.php │ ├── ItemSortFilterCodeType.php │ ├── ItemSortTypeCodeType.php │ ├── ItemSpecificSourceCodeType.php │ ├── ItemSpecificsEnabledCodeType.php │ ├── ItemTypeCodeType.php │ ├── ListingDurationCodeType.php │ ├── ListingEnhancementDurationCodeType.php │ ├── ListingEnhancementsCodeType.php │ ├── ListingFlowCodeType.php │ ├── ListingStatusCodeType.php │ ├── ListingSubtypeCodeType.php │ ├── ListingTypeCodeType.php │ ├── LogisticsPlanCodeType.php │ ├── LogoTypeCodeType.php │ ├── MailOptionsTypeCodeType.php │ ├── MarkUpMarkDownEventTypeCodeType.php │ ├── MeasurementSystemCodeType.php │ ├── MerchDisplayCodeType.php │ ├── MessageStatusTypeCodeType.php │ ├── MessageTypeCodeType.php │ ├── MinimumAdvertisedPriceExposureCodeType.php │ ├── MismatchTypeCodeType.php │ ├── ModifyActionCodeType.php │ ├── MyMessagesAlertResolutionStatusCode.php │ ├── MyMessagesFolderOperationCodeType.php │ ├── NotificationDeliveryStatusCodeType.php │ ├── NotificationEventPropertyNameCodeType.php │ ├── NotificationEventStateCodeType.php │ ├── NotificationEventTypeCodeType.php │ ├── NotificationPayloadTypeCodeType.php │ ├── NotificationRoleCodeType.php │ ├── OrderRoleCodeType.php │ ├── OrderStatusCodeType.php │ ├── OrderStatusFilterCodeType.php │ ├── PaidStatusCodeType.php │ ├── PayPalAccountLevelCodeType.php │ ├── PayPalAccountStatusCodeType.php │ ├── PayPalAccountTypeCodeType.php │ ├── PaymentHoldReasonCodeType.php │ ├── PaymentHoldStatusCodeType.php │ ├── PaymentInstructionCodeType.php │ ├── PaymentMethodSearchCodeType.php │ ├── PaymentOptionsGroupEnabledCodeType.php │ ├── PaymentStatusCodeType.php │ ├── PaymentTransactionStatusCodeType.php │ ├── PaymentTypeCodeType.php │ ├── PayoutMethodType.php │ ├── PerformanceStatusCodeType.php │ ├── PeriodCodeType.php │ ├── PhotoDisplayCodeType.php │ ├── PickupMethodCodeType.php │ ├── PickupStatusCodeType.php │ ├── PictureFormatCodeType.php │ ├── PictureManagerActionCodeType.php │ ├── PictureManagerDetailLevelCodeType.php │ ├── PictureManagerPictureDisplayTypeCodeType.php │ ├── PictureManagerSubscriptionLevelCodeType.php │ ├── PictureSetCodeType.php │ ├── PictureSourceCodeType.php │ ├── PictureUploadPolicyCodeType.php │ ├── PictureWatermarkCodeType.php │ ├── PolicyComplianceStatusCodeType.php │ ├── PreferredLocationCodeType.php │ ├── PricingTreatmentCodeType.php │ ├── ProPackCodeType.php │ ├── ProductCreationEnabledCodeType.php │ ├── ProductIdentiferEnabledCodeType.php │ ├── ProductRequiredCodeType.php │ ├── ProductRequiredEnabledCodeType.php │ ├── ProductSortCodeType.php │ ├── ProductStateCodeType.php │ ├── ProductUseCaseCodeType.php │ ├── ProfileCategoryGroupCodeType.php │ ├── PromotionItemPriceTypeCodeType.php │ ├── PromotionItemSelectionCodeType.php │ ├── PromotionMethodCodeType.php │ ├── PromotionSchemeCodeType.php │ ├── PromotionalSaleStatusCodeType.php │ ├── PromotionalSaleTypeCodeType.php │ ├── PurchasePurposeTypeCodeType.php │ ├── QuantityAvailableHintCodeType.php │ ├── QuantityOperatorCodeType.php │ ├── QuestionTypeCodeType.php │ ├── RCSPaymentStatusCodeType.php │ ├── RangeCodeType.php │ ├── ReasonHideFromSearchCodeType.php │ ├── RecipientRelationCodeType.php │ ├── RecommendationEngineCodeType.php │ ├── RefundFailureCodeType.php │ ├── RefundLineTypeCodeType.php │ ├── RefundOptionsCodeType.php │ ├── RefundReasonCodeType.php │ ├── RefundSourceTypeCodeType.php │ ├── RefundStatusCodeType.php │ ├── RefundTypeCodeType.php │ ├── RefundingSourceTypeCodeType.php │ ├── RequiredSellerActionCodeType.php │ ├── RestockingFeeCodeType.php │ ├── ReturnStatusCodeType.php │ ├── ReturnsAcceptedOptionsCodeType.php │ ├── ReturnsWithinOptionsCodeType.php │ ├── SMSSubscriptionErrorCodeCodeType.php │ ├── SMSSubscriptionUserStatusCodeType.php │ ├── SearchFlagCodeType.php │ ├── SearchStandingStatusCodeType.php │ ├── SecondChanceOfferDurationCodeType.php │ ├── SelectionModeCodeType.php │ ├── SellerAccountStatusCodeType.php │ ├── SellerBusinessCodeType.php │ ├── SellerDashboardAlertSeverityCodeType.php │ ├── SellerGuaranteeLevelCodeType.php │ ├── SellerLevelCodeType.php │ ├── SellerPIStatusCodeType.php │ ├── SellerPaymentMethodCodeType.php │ ├── SellereBayPaymentProcessStatusCodeType.php │ ├── SellingManagerAlertTypeCodeType.php │ ├── SellingManagerAutoRelistOptionCodeType.php │ ├── SellingManagerAutoRelistTypeCodeType.php │ ├── SellingManagerAutoSecondChanceOfferTypeCodeType.php │ ├── SellingManagerAutomationPropertyTypeCodeType.php │ ├── SellingManagerEmailSentStatusCodeType.php │ ├── SellingManagerEmailTypeCodeType.php │ ├── SellingManagerGeneralPropertyTypeCodeType.php │ ├── SellingManagerInventoryPropertyTypeCodeType.php │ ├── SellingManagerPaidStatusCodeType.php │ ├── SellingManagerPaisaPayPropertyTypeCodeType.php │ ├── SellingManagerProductSortCodeType.php │ ├── SellingManagerSearchTypeCodeType.php │ ├── SellingManagerShippedStatusCodeType.php │ ├── SellingManagerSoldListingsPropertyTypeCodeType.php │ ├── SellingManagerSoldListingsSortTypeCodeType.php │ ├── SetUserNotesActionCodeType.php │ ├── SeverityCodeType.php │ ├── ShipmentDeliveryStatusCodeType.php │ ├── ShipmentStatusCodeType.php │ ├── ShippingCarrierCodeType.php │ ├── ShippingCostPaidByOptionsCodeType.php │ ├── ShippingFeatureCodeType.php │ ├── ShippingPackageCodeType.php │ ├── ShippingRateTypeCodeType.php │ ├── ShippingRegionCodeType.php │ ├── ShippingServiceCodeType.php │ ├── ShippingServiceType.php │ ├── ShippingTrackingEventCodeType.php │ ├── ShippingTypeCodeType.php │ ├── SimpleItemSortCodeType.php │ ├── SiteCodeType.php │ ├── SiteIDFilterCodeType.php │ ├── SkypeContactOptionCodeType.php │ ├── SocialAddressTypeCodeType.php │ ├── SortOrderCodeType.php │ ├── StoreCategoryUpdateActionCodeType.php │ ├── StoreCustomHeaderLayoutCodeType.php │ ├── StoreCustomListingHeaderDisplayCodeType.php │ ├── StoreCustomListingHeaderLinkCodeType.php │ ├── StoreCustomPageStatusCodeType.php │ ├── StoreFontFaceCodeType.php │ ├── StoreFontSizeCodeType.php │ ├── StoreHeaderStyleCodeType.php │ ├── StoreItemListLayoutCodeType.php │ ├── StoreItemListSortOrderCodeType.php │ ├── StoreSubscriptionLevelCodeType.php │ ├── StringMatchCodeType.php │ ├── SummaryFrequencyCodeType.php │ ├── SummaryWindowPeriodCodeType.php │ ├── TaskStatusCodeType.php │ ├── TaxDescriptionCodeType.php │ ├── TaxIdentifierAttributeCodeType.php │ ├── TaxIdentifierCodeType.php │ ├── TaxTypeCodeType.php │ ├── TicketEventTypeCodeType.php │ ├── TokenReturnMethodCodeType.php │ ├── TokenStatusCodeType.php │ ├── TopRatedProgramCodeType.php │ ├── TradingRoleCodeType.php │ ├── TransactionPlatformCodeType.php │ ├── TransactionReferenceCodeType.php │ ├── UPSRateOptionCodeType.php │ ├── URLTypeCodeType.php │ ├── USPSRateOptionCodeType.php │ ├── UnitCodeType.php │ ├── UnpaidItemCaseOpenTypeCodeType.php │ ├── UnpaidItemCaseStatusTypeCodeType.php │ ├── UnpaidItemStatusTypeCodeType.php │ ├── UserIdentityCodeType.php │ ├── UserStatusCodeType.php │ ├── VATStatusCodeType.php │ ├── ValueFormatCodeType.php │ ├── ValueTypeCodeType.php │ ├── VariationPictureRuleCodeType.php │ ├── VariationSpecificsRuleCodeType.php │ ├── VeROItemStatusCodeType.php │ ├── VeROReportPacketStatusCodeType.php │ ├── WarningLevelCodeType.php │ ├── WarrantyDurationOptionsCodeType.php │ ├── WarrantyOfferedCodeType.php │ ├── WarrantyTypeOptionsCodeType.php │ └── WirelessCarrierIDCodeType.php ├── Services │ ├── TradingBaseService.php │ └── TradingService.php └── Types │ ├── ASQPreferencesType.php │ ├── AbstractRequestType.php │ ├── AbstractResponseType.php │ ├── AccountEntriesType.php │ ├── AccountEntryType.php │ ├── AccountSummaryType.php │ ├── AdFormatEnabledDefinitionType.php │ ├── AdFormatLeadType.php │ ├── AddDisputeRequestType.php │ ├── AddDisputeResponseRequestType.php │ ├── AddDisputeResponseResponseType.php │ ├── AddDisputeResponseType.php │ ├── AddFixedPriceItemRequestType.php │ ├── AddFixedPriceItemResponseType.php │ ├── AddItemFromSellingManagerTemplateRequestType.php │ ├── AddItemFromSellingManagerTemplateResponseType.php │ ├── AddItemRequestContainerType.php │ ├── AddItemRequestType.php │ ├── AddItemResponseContainerType.php │ ├── AddItemResponseType.php │ ├── AddItemsRequestType.php │ ├── AddItemsResponseType.php │ ├── AddMemberMessageAAQToPartnerRequestType.php │ ├── AddMemberMessageAAQToPartnerResponseType.php │ ├── AddMemberMessageRTQRequestType.php │ ├── AddMemberMessageRTQResponseType.php │ ├── AddMemberMessagesAAQToBidderRequestContainerType.php │ ├── AddMemberMessagesAAQToBidderRequestType.php │ ├── AddMemberMessagesAAQToBidderResponseContainerType.php │ ├── AddMemberMessagesAAQToBidderResponseType.php │ ├── AddOrderRequestType.php │ ├── AddOrderResponseType.php │ ├── AddSecondChanceItemRequestType.php │ ├── AddSecondChanceItemResponseType.php │ ├── AddSellingManagerInventoryFolderRequestType.php │ ├── AddSellingManagerInventoryFolderResponseType.php │ ├── AddSellingManagerProductRequestType.php │ ├── AddSellingManagerProductResponseType.php │ ├── AddSellingManagerTemplateRequestType.php │ ├── AddSellingManagerTemplateResponseType.php │ ├── AddToItemDescriptionRequestType.php │ ├── AddToItemDescriptionResponseType.php │ ├── AddToWatchListRequestType.php │ ├── AddToWatchListResponseType.php │ ├── AddTransactionConfirmationItemRequestType.php │ ├── AddTransactionConfirmationItemResponseType.php │ ├── AdditionalAccountType.php │ ├── AdditionalCompatibilityEnabledDefinitionType.php │ ├── AddressAttributeType.php │ ├── AddressType.php │ ├── AffiliateTrackingDetailsType.php │ ├── AmountType.php │ ├── AnnouncementMessageType.php │ ├── ApiAccessRuleType.php │ ├── ApplicationDeliveryPreferencesType.php │ ├── AttributeArrayType.php │ ├── AttributeConversionEnabledFeatureDefinitionType.php │ ├── AttributeRecommendationsType.php │ ├── AttributeSetArrayType.php │ ├── AttributeSetType.php │ ├── AttributeType.php │ ├── AverageRatingDetailArrayType.php │ ├── AverageRatingDetailsType.php │ ├── AverageRatingSummaryType.php │ ├── Base64BinaryType.php │ ├── BasicAmountType.php │ ├── BasicUpgradePackEnabledDefinitionType.php │ ├── BestOfferArrayType.php │ ├── BestOfferAutoAcceptEnabledDefinitionType.php │ ├── BestOfferAutoDeclineEnabledDefinitionType.php │ ├── BestOfferCounterEnabledDefinitionType.php │ ├── BestOfferDetailsType.php │ ├── BestOfferEnabledDefinitionType.php │ ├── BestOfferType.php │ ├── BidApprovalArrayType.php │ ├── BidApprovalType.php │ ├── BidAssistantListType.php │ ├── BidGroupArrayType.php │ ├── BidGroupItemType.php │ ├── BidGroupType.php │ ├── BidderDetailArrayType.php │ ├── BidderDetailType.php │ ├── BidderNoticePreferencesType.php │ ├── BiddingDetailsType.php │ ├── BiddingSummaryType.php │ ├── BotBlockRequestType.php │ ├── BotBlockResponseType.php │ ├── BrandMPNIdentifierEnabledDefinitionType.php │ ├── BrandMPNType.php │ ├── BusinessSellerDetailsType.php │ ├── BuyerGuaranteeEnabledDefinitionType.php │ ├── BuyerPackageEnclosureType.php │ ├── BuyerPackageEnclosuresType.php │ ├── BuyerProtectionDetailsType.php │ ├── BuyerRequirementDetailsType.php │ ├── BuyerRoleMetricsType.php │ ├── BuyerSatisfactionDashboardType.php │ ├── BuyerType.php │ ├── BuyingGuideDetailsType.php │ ├── BuyingGuideType.php │ ├── BuyingSummaryType.php │ ├── CalculatedHandlingDiscountType.php │ ├── CalculatedShippingDiscountType.php │ ├── CalculatedShippingPreferencesType.php │ ├── CalculatedShippingRateType.php │ ├── CancelDetailType.php │ ├── CancelOfferArrayType.php │ ├── CancelOfferType.php │ ├── CartItemType.php │ ├── CatalogProductType.php │ ├── CategoryArrayType.php │ ├── CategoryFeatureType.php │ ├── CategoryGroupType.php │ ├── CategoryItemSpecificsType.php │ ├── CategoryMappingType.php │ ├── CategoryType.php │ ├── CharacteristicSetIDsType.php │ ├── CharacteristicType.php │ ├── CharacteristicsSetProductHistogramType.php │ ├── CharacteristicsSetType.php │ ├── CharityAffiliationDetailType.php │ ├── CharityAffiliationDetailsType.php │ ├── CharityAffiliationType.php │ ├── CharityAffiliationsType.php │ ├── CharityIDType.php │ ├── CharityInfoType.php │ ├── CharitySellerType.php │ ├── CharityType.php │ ├── CheckoutOrderDetailType.php │ ├── CheckoutStatusType.php │ ├── ClassifiedAdAutoAcceptEnabledDefinitionType.php │ ├── ClassifiedAdAutoDeclineEnabledDefinitionType.php │ ├── ClassifiedAdBestOfferEnabledDefinitionType.php │ ├── ClassifiedAdCompanyNameEnabledDefinitionType.php │ ├── ClassifiedAdContactByAddressEnabledDefinitionType.php │ ├── ClassifiedAdContactByEmailEnabledDefintionType.php │ ├── ClassifiedAdContactByPhoneEnabledDefinitionType.php │ ├── ClassifiedAdCounterOfferEnabledDefinitionType.php │ ├── ClassifiedAdPayPerLeadEnabledDefinitionType.php │ ├── ClassifiedAdPaymentMethodEnabledDefinitionType.php │ ├── ClassifiedAdPhoneCountDefinitionType.php │ ├── ClassifiedAdShippingMethodEnabledDefinitionType.php │ ├── ClassifiedAdStreetCountDefinitionType.php │ ├── CombinedFixedPriceTreatmentEnabledDefinitionType.php │ ├── CombinedPaymentPreferencesType.php │ ├── CompatibleVehicleTypeDefinitionType.php │ ├── CompleteSaleRequestType.php │ ├── CompleteSaleResponseType.php │ ├── ConditionEnabledDefinitionType.php │ ├── ConditionType.php │ ├── ConditionValuesDefinitionType.php │ ├── ConditionValuesType.php │ ├── ConfirmIdentityRequestType.php │ ├── ConfirmIdentityResponseType.php │ ├── ContactHoursDetailsType.php │ ├── ContextSearchAssetType.php │ ├── CountryDetailsType.php │ ├── CrossBorderTradeAustraliaEnabledDefinitionType.php │ ├── CrossBorderTradeGBEnabledDefinitionType.php │ ├── CrossBorderTradeNorthAmericaEnabledDefinitionType.php │ ├── CrossPromotionPreferencesType.php │ ├── CrossPromotionsType.php │ ├── CurrencyDetailsType.php │ ├── CustomSecurityHeaderType.php │ ├── DataElementSetType.php │ ├── DateType.php │ ├── DeleteMyMessagesRequestType.php │ ├── DeleteMyMessagesResponseType.php │ ├── DeleteSellingManagerInventoryFolderRequestType.php │ ├── DeleteSellingManagerInventoryFolderResponseType.php │ ├── DeleteSellingManagerItemAutomationRuleRequestType.php │ ├── DeleteSellingManagerItemAutomationRuleResponseType.php │ ├── DeleteSellingManagerProductRequestType.php │ ├── DeleteSellingManagerProductResponseType.php │ ├── DeleteSellingManagerTemplateAutomationRuleRequestType.php │ ├── DeleteSellingManagerTemplateAutomationRuleResponseType.php │ ├── DeleteSellingManagerTemplateRequestType.php │ ├── DeleteSellingManagerTemplateResponseType.php │ ├── DeliveryDetailsType.php │ ├── DeliveryStatusType.php │ ├── DeliveryURLDetailType.php │ ├── DepositSupportedDefinitionType.php │ ├── DescriptionTemplateType.php │ ├── DigitalDeliverySelectedType.php │ ├── DigitalDeliveryUserType.php │ ├── DigitalGoodDeliveryEnabledDefinitionType.php │ ├── DigitalGoodInfoType.php │ ├── DisableUnpaidItemAssistanceRequestType.php │ ├── DisableUnpaidItemAssistanceResponseType.php │ ├── DiscountPriceInfoType.php │ ├── DiscountProfileType.php │ ├── DispatchCutoffTimePreferencesType.php │ ├── DispatchTimeMaxDetailsType.php │ ├── DisputeArrayType.php │ ├── DisputeFilterCountType.php │ ├── DisputeMessageType.php │ ├── DisputeResolutionType.php │ ├── DisputeType.php │ ├── DistanceType.php │ ├── DuplicateInvocationDetailsType.php │ ├── DutchBINEnabledDefinitionType.php │ ├── EANEnabledDefinitionType.php │ ├── EANIdentifierEnabledDefinitionType.php │ ├── EBayMotorsProAdFormatEnabledDefinitionType.php │ ├── EBayMotorsProAutoAcceptEnabledDefinitionType.php │ ├── EBayMotorsProAutoDeclineEnabledDefinitionType.php │ ├── EBayMotorsProBestOfferEnabledDefinitionType.php │ ├── EBayMotorsProCompanyNameEnabledDefinitionType.php │ ├── EBayMotorsProContactByAddressEnabledDefinitionType.php │ ├── EBayMotorsProContactByEmailEnabledDefinitionType.php │ ├── EBayMotorsProContactByPhoneEnabledDefinitionType.php │ ├── EBayMotorsProCounterOfferEnabledDefinitionType.php │ ├── EBayMotorsProPaymentMethodCheckOutEnabledDefinitionType.php │ ├── EBayMotorsProPhoneCountDefinitionType.php │ ├── EBayMotorsProSellerContactDetailsEnabledDefinitionType.php │ ├── EBayMotorsProShippingMethodEnabledDefinitionType.php │ ├── EBayMotorsProStreetCountDefinitionType.php │ ├── EBayPLUSPreferenceType.php │ ├── EBayPaymentMismatchDetailsType.php │ ├── EndFixedPriceItemRequestType.php │ ├── EndFixedPriceItemResponseType.php │ ├── EndItemRequestContainerType.php │ ├── EndItemRequestType.php │ ├── EndItemResponseContainerType.php │ ├── EndItemResponseType.php │ ├── EndItemsRequestType.php │ ├── EndItemsResponseType.php │ ├── EndOfAuctionEmailPreferencesType.php │ ├── EpidSupportedDefinitionType.php │ ├── ErrorParameterType.php │ ├── ErrorType.php │ ├── ExcludeShippingLocationDetailsType.php │ ├── ExpressConditionRequiredDefinitionType.php │ ├── ExpressEnabledDefinitionType.php │ ├── ExpressItemRequirementsType.php │ ├── ExpressPicturesRequiredDefinitionType.php │ ├── ExtendSiteHostedPicturesRequestType.php │ ├── ExtendSiteHostedPicturesResponseType.php │ ├── ExtendedContactDetailsType.php │ ├── ExtendedPictureDetailsType.php │ ├── ExtendedProductFinderIDType.php │ ├── ExternalAlertIDArrayType.php │ ├── ExternalTransactionType.php │ ├── FaultDetailsType.php │ ├── FeatureDefinitionsType.php │ ├── FeatureEligibilityType.php │ ├── FeeType.php │ ├── FeedbackCommentArrayType.php │ ├── FeedbackDetailArrayType.php │ ├── FeedbackDetailType.php │ ├── FeedbackInfoType.php │ ├── FeedbackPeriodArrayType.php │ ├── FeedbackPeriodType.php │ ├── FeedbackRequirementsType.php │ ├── FeedbackSummaryType.php │ ├── FeesType.php │ ├── FetchTokenRequestType.php │ ├── FetchTokenResponseType.php │ ├── FlatRateInsuranceRangeCostType.php │ ├── FlatShippingDiscountType.php │ ├── FlatShippingPreferencesType.php │ ├── FreeGalleryPlusEnabledDefinitionType.php │ ├── FreePicturePackEnabledDefinitionType.php │ ├── GetAccountRequestType.php │ ├── GetAccountResponseType.php │ ├── GetAdFormatLeadsRequestType.php │ ├── GetAdFormatLeadsResponseType.php │ ├── GetAllBiddersRequestType.php │ ├── GetAllBiddersResponseType.php │ ├── GetApiAccessRulesRequestType.php │ ├── GetApiAccessRulesResponseType.php │ ├── GetBestOffersRequestType.php │ ├── GetBestOffersResponseType.php │ ├── GetBidderListRequestType.php │ ├── GetBidderListResponseType.php │ ├── GetCategoriesRequestType.php │ ├── GetCategoriesResponseType.php │ ├── GetCategoryFeaturesRequestType.php │ ├── GetCategoryFeaturesResponseType.php │ ├── GetCategoryMappingsRequestType.php │ ├── GetCategoryMappingsResponseType.php │ ├── GetCategorySpecificsRequestType.php │ ├── GetCategorySpecificsResponseType.php │ ├── GetChallengeTokenRequestType.php │ ├── GetChallengeTokenResponseType.php │ ├── GetCharitiesRequestType.php │ ├── GetCharitiesResponseType.php │ ├── GetClientAlertsAuthTokenRequestType.php │ ├── GetClientAlertsAuthTokenResponseType.php │ ├── GetContextualKeywordsRequestType.php │ ├── GetContextualKeywordsResponseType.php │ ├── GetDescriptionTemplatesRequestType.php │ ├── GetDescriptionTemplatesResponseType.php │ ├── GetDisputeRequestType.php │ ├── GetDisputeResponseType.php │ ├── GetFeedbackRequestType.php │ ├── GetFeedbackResponseType.php │ ├── GetItemRequestType.php │ ├── GetItemResponseType.php │ ├── GetItemShippingRequestType.php │ ├── GetItemShippingResponseType.php │ ├── GetItemTransactionsRequestType.php │ ├── GetItemTransactionsResponseType.php │ ├── GetItemsAwaitingFeedbackRequestType.php │ ├── GetItemsAwaitingFeedbackResponseType.php │ ├── GetMemberMessagesRequestType.php │ ├── GetMemberMessagesResponseType.php │ ├── GetMessagePreferencesRequestType.php │ ├── GetMessagePreferencesResponseType.php │ ├── GetMyMessagesRequestType.php │ ├── GetMyMessagesResponseType.php │ ├── GetMyeBayBuyingRequestType.php │ ├── GetMyeBayBuyingResponseType.php │ ├── GetMyeBayRemindersRequestType.php │ ├── GetMyeBayRemindersResponseType.php │ ├── GetMyeBaySellingRequestType.php │ ├── GetMyeBaySellingResponseType.php │ ├── GetNotificationPreferencesRequestType.php │ ├── GetNotificationPreferencesResponseType.php │ ├── GetNotificationsUsageRequestType.php │ ├── GetNotificationsUsageResponseType.php │ ├── GetOrderTransactionsRequestType.php │ ├── GetOrderTransactionsResponseType.php │ ├── GetOrdersRequestType.php │ ├── GetOrdersResponseType.php │ ├── GetPromotionalSaleDetailsRequestType.php │ ├── GetPromotionalSaleDetailsResponseType.php │ ├── GetRecommendationsRequestContainerType.php │ ├── GetRecommendationsResponseContainerType.php │ ├── GetSellerDashboardRequestType.php │ ├── GetSellerDashboardResponseType.php │ ├── GetSellerEventsRequestType.php │ ├── GetSellerEventsResponseType.php │ ├── GetSellerListRequestType.php │ ├── GetSellerListResponseType.php │ ├── GetSellerTransactionsRequestType.php │ ├── GetSellerTransactionsResponseType.php │ ├── GetSellingManagerAlertsRequestType.php │ ├── GetSellingManagerAlertsResponseType.php │ ├── GetSellingManagerEmailLogRequestType.php │ ├── GetSellingManagerEmailLogResponseType.php │ ├── GetSellingManagerInventoryFolderRequestType.php │ ├── GetSellingManagerInventoryFolderResponseType.php │ ├── GetSellingManagerInventoryRequestType.php │ ├── GetSellingManagerInventoryResponseType.php │ ├── GetSellingManagerItemAutomationRuleRequestType.php │ ├── GetSellingManagerItemAutomationRuleResponseType.php │ ├── GetSellingManagerSaleRecordRequestType.php │ ├── GetSellingManagerSaleRecordResponseType.php │ ├── GetSellingManagerSoldListingsRequestType.php │ ├── GetSellingManagerSoldListingsResponseType.php │ ├── GetSellingManagerTemplateAutomationRuleRequestType.php │ ├── GetSellingManagerTemplateAutomationRuleResponseType.php │ ├── GetSellingManagerTemplatesRequestType.php │ ├── GetSellingManagerTemplatesResponseType.php │ ├── GetSessionIDRequestType.php │ ├── GetSessionIDResponseType.php │ ├── GetShippingDiscountProfilesRequestType.php │ ├── GetShippingDiscountProfilesResponseType.php │ ├── GetStoreCategoryUpdateStatusRequestType.php │ ├── GetStoreCategoryUpdateStatusResponseType.php │ ├── GetStoreCustomPageRequestType.php │ ├── GetStoreCustomPageResponseType.php │ ├── GetStoreOptionsRequestType.php │ ├── GetStoreOptionsResponseType.php │ ├── GetStorePreferencesRequestType.php │ ├── GetStorePreferencesResponseType.php │ ├── GetStoreRequestType.php │ ├── GetStoreResponseType.php │ ├── GetSuggestedCategoriesRequestType.php │ ├── GetSuggestedCategoriesResponseType.php │ ├── GetTaxTableRequestType.php │ ├── GetTaxTableResponseType.php │ ├── GetTokenStatusRequestType.php │ ├── GetTokenStatusResponseType.php │ ├── GetUserContactDetailsRequestType.php │ ├── GetUserContactDetailsResponseType.php │ ├── GetUserDisputesRequestType.php │ ├── GetUserDisputesResponseType.php │ ├── GetUserPreferencesRequestType.php │ ├── GetUserPreferencesResponseType.php │ ├── GetUserRequestType.php │ ├── GetUserResponseType.php │ ├── GetVeROReasonCodeDetailsRequestType.php │ ├── GetVeROReasonCodeDetailsResponseType.php │ ├── GetVeROReportStatusRequestType.php │ ├── GetVeROReportStatusResponseType.php │ ├── GeteBayDetailsRequestType.php │ ├── GeteBayDetailsResponseType.php │ ├── GeteBayOfficialTimeRequestType.php │ ├── GeteBayOfficialTimeResponseType.php │ ├── GiftSummaryType.php │ ├── GlobalShippingEnabledDefinitionType.php │ ├── Group1MaxFlatShippingCostDefinitionType.php │ ├── Group2MaxFlatShippingCostDefinitionType.php │ ├── Group3MaxFlatShippingCostDefinitionType.php │ ├── GroupValidationRulesType.php │ ├── HandlingTimeEnabledDefinitionType.php │ ├── HistogramEntryType.php │ ├── HomePageFeaturedEnabledDefinitionType.php │ ├── INEscrowWorkflowTimelineDefinitionType.php │ ├── ISBNEnabledDefinitionType.php │ ├── ISBNIdentifierEnabledDefinitionType.php │ ├── InsuranceDetailsType.php │ ├── IntegratedMerchantCreditCardInfoType.php │ ├── InternationalShippingServiceOptionsType.php │ ├── InventoryFeesType.php │ ├── InventoryStatusType.php │ ├── ItemArrayType.php │ ├── ItemBestOffersArrayType.php │ ├── ItemBestOffersType.php │ ├── ItemBidDetailsType.php │ ├── ItemCompatibilityEnabledDefinitionType.php │ ├── ItemCompatibilityListType.php │ ├── ItemCompatibilityType.php │ ├── ItemIDArrayType.php │ ├── ItemListCustomizationType.php │ ├── ItemPolicyViolationType.php │ ├── ItemRatingDetailArrayType.php │ ├── ItemRatingDetailsType.php │ ├── ItemSpecificDetailsType.php │ ├── ItemSpecificsEnabledDefinitionType.php │ ├── ItemTotalsType.php │ ├── ItemTransactionIDArrayType.php │ ├── ItemTransactionIDType.php │ ├── ItemType.php │ ├── ItemsCanceledEventType.php │ ├── KTypeSupportedDefinitionType.php │ ├── LabelType.php │ ├── LeaveFeedbackRequestType.php │ ├── LeaveFeedbackResponseType.php │ ├── LineItemType.php │ ├── ListingAnalyzerRecommendationsType.php │ ├── ListingCheckoutRedirectPreferenceType.php │ ├── ListingDesignerType.php │ ├── ListingDetailsType.php │ ├── ListingDurationDefinitionType.php │ ├── ListingDurationDefinitionsType.php │ ├── ListingDurationReferenceType.php │ ├── ListingEnhancementDurationDefinitionType.php │ ├── ListingEnhancementDurationReferenceType.php │ ├── ListingFeatureDetailsType.php │ ├── ListingRecommendationType.php │ ├── ListingRecommendationsType.php │ ├── ListingStartPriceDetailsType.php │ ├── ListingTipArrayType.php │ ├── ListingTipFieldType.php │ ├── ListingTipMessageType.php │ ├── ListingTipType.php │ ├── LocalListingDistancesNonSubscriptionDefinitionType.php │ ├── LocalListingDistancesRegularDefinitionType.php │ ├── LocalListingDistancesSpecialtyDefinitionType.php │ ├── LocalMarketAdFormatEnabledDefinitionType.php │ ├── LocalMarketAutoAcceptEnabledDefinitionType.php │ ├── LocalMarketAutoDeclineEnabledDefinitionType.php │ ├── LocalMarketBestOfferEnabledDefinitionType.php │ ├── LocalMarketCompanyNameEnabledDefinitionType.php │ ├── LocalMarketContactByAddressEnabledDefinitionType.php │ ├── LocalMarketContactByEmailEnabledDefinitionType.php │ ├── LocalMarketContactByPhoneEnabledDefinitionType.php │ ├── LocalMarketCounterOfferEnabledDefinitionType.php │ ├── LocalMarketNonSubscriptionDefinitionType.php │ ├── LocalMarketPaymentMethodCheckOutEnabledDefinitionType.php │ ├── LocalMarketPhoneCountDefinitionType.php │ ├── LocalMarketPremiumSubscriptionDefinitionType.php │ ├── LocalMarketRegularSubscriptionDefinitionType.php │ ├── LocalMarketSellerContactDetailsEnabledDefinitionType.php │ ├── LocalMarketShippingMethodEnabledDefinitionType.php │ ├── LocalMarketSpecialitySubscriptionDefinitionType.php │ ├── LocalMarketStreetCountDefinitionType.php │ ├── LocalSearchType.php │ ├── LookupAttributeArrayType.php │ ├── LookupAttributeType.php │ ├── MarkUpMarkDownEventType.php │ ├── MarkUpMarkDownHistoryType.php │ ├── MaxFlatShippingCostCBTExemptDefinitionType.php │ ├── MaxFlatShippingCostDefinitionType.php │ ├── MaxGranularFitmentCountDefinitionType.php │ ├── MaxItemCompatibilityDefinitionType.php │ ├── MaximumBuyerPolicyViolationsDetailsType.php │ ├── MaximumBuyerPolicyViolationsType.php │ ├── MaximumItemRequirementsDetailsType.php │ ├── MaximumItemRequirementsType.php │ ├── MaximumUnpaidItemStrikesCountDetailsType.php │ ├── MaximumUnpaidItemStrikesDurationDetailsType.php │ ├── MaximumUnpaidItemStrikesInfoDetailsType.php │ ├── MaximumUnpaidItemStrikesInfoType.php │ ├── MeasureType.php │ ├── MemberMessageExchangeArrayType.php │ ├── MemberMessageExchangeType.php │ ├── MemberMessageType.php │ ├── MembershipDetailType.php │ ├── MembershipDetailsType.php │ ├── MessageMediaType.php │ ├── MetadataType.php │ ├── MinItemCompatibilityDefinitionType.php │ ├── MinimumFeedbackScoreDetailsType.php │ ├── MinimumReservePriceDefinitionType.php │ ├── ModifyNameArrayType.php │ ├── ModifyNameType.php │ ├── MotorsLocalMarketEnabledDefinitionType.php │ ├── MoveSellingManagerInventoryFolderRequestType.php │ ├── MoveSellingManagerInventoryFolderResponseType.php │ ├── MultiLegShipmentType.php │ ├── MultiLegShippingDetailsType.php │ ├── MultiLegShippingServiceType.php │ ├── MyMessagesAlertArrayType.php │ ├── MyMessagesAlertIDArrayType.php │ ├── MyMessagesAlertType.php │ ├── MyMessagesExternalMessageIDArrayType.php │ ├── MyMessagesFolderSummaryType.php │ ├── MyMessagesFolderType.php │ ├── MyMessagesForwardDetailsType.php │ ├── MyMessagesMessageArrayType.php │ ├── MyMessagesMessageIDArrayType.php │ ├── MyMessagesMessageType.php │ ├── MyMessagesResponseDetailsType.php │ ├── MyMessagesSummaryType.php │ ├── MyeBayFavoriteSearchListType.php │ ├── MyeBayFavoriteSearchType.php │ ├── MyeBayFavoriteSellerListType.php │ ├── MyeBayFavoriteSellerType.php │ ├── MyeBaySecondChanceOfferListType.php │ ├── MyeBaySelectionType.php │ ├── MyeBaySellingSummaryType.php │ ├── NameRecommendationType.php │ ├── NameValueListArrayType.php │ ├── NameValueListType.php │ ├── NameValueRelationshipType.php │ ├── NonProfitAddressType.php │ ├── NonProfitSocialAddressType.php │ ├── NonSubscriptionDefinitionType.php │ ├── NotificationDetailsArrayType.php │ ├── NotificationDetailsType.php │ ├── NotificationEnableArrayType.php │ ├── NotificationEnableType.php │ ├── NotificationEventPropertyType.php │ ├── NotificationMessageType.php │ ├── NotificationStatisticsType.php │ ├── NotificationUserDataType.php │ ├── NumberOfPolicyViolationsDetailsType.php │ ├── OfferArrayType.php │ ├── OfferType.php │ ├── OrderArrayType.php │ ├── OrderIDArrayType.php │ ├── OrderTransactionArrayType.php │ ├── OrderTransactionType.php │ ├── OrderType.php │ ├── PaginatedItemArrayType.php │ ├── PaginatedOrderTransactionArrayType.php │ ├── PaginatedTransactionArrayType.php │ ├── PaginationResultType.php │ ├── PaginationType.php │ ├── PaisaPayFullEscrowEnabledDefinitionType.php │ ├── PayPalBuyerProtectionEnabledDefinitionType.php │ ├── PayPalRequiredDefinitionType.php │ ├── PayPalRequiredForStoreOwnerDefinitionType.php │ ├── PaymentDetailsType.php │ ├── PaymentHoldDetailType.php │ ├── PaymentInformationCodeType.php │ ├── PaymentInformationType.php │ ├── PaymentMethodDefinitionType.php │ ├── PaymentOptionDetailsType.php │ ├── PaymentOptionsGroupEnabledDefinitionType.php │ ├── PaymentTransactionCodeType.php │ ├── PaymentTransactionType.php │ ├── PaymentsInformationCodeType.php │ ├── PaymentsInformationType.php │ ├── PerformanceDashboardType.php │ ├── PickupDetailsType.php │ ├── PickupDropOffEnabledDefinitionType.php │ ├── PickupInStoreDetailsType.php │ ├── PickupMethodSelectedType.php │ ├── PickupOptionsType.php │ ├── PictureDetailsType.php │ ├── PictureManagerDetailsType.php │ ├── PictureManagerFolderType.php │ ├── PictureManagerPictureDisplayType.php │ ├── PictureManagerPictureType.php │ ├── PictureManagerSubscriptionType.php │ ├── PictureSetMemberType.php │ ├── PictureURLsType.php │ ├── PicturesType.php │ ├── PlaceOfferRequestType.php │ ├── PlaceOfferResponseType.php │ ├── PolicyComplianceDashboardType.php │ ├── PolicyViolationDurationDetailsType.php │ ├── PowerSellerDashboardType.php │ ├── PremiumSubscriptionDefinitionType.php │ ├── PricingRecommendationsType.php │ ├── ProPackEnabledDefinitionType.php │ ├── ProPackPlusEnabledDefinitionType.php │ ├── ProStoresCheckoutPreferenceType.php │ ├── ProStoresDetailsType.php │ ├── ProductCreationEnabledDefinitionType.php │ ├── ProductDetailsType.php │ ├── ProductFamilyType.php │ ├── ProductFinderConstraintType.php │ ├── ProductIdentifiersType.php │ ├── ProductInfoType.php │ ├── ProductListingDetailsType.php │ ├── ProductRecommendationsType.php │ ├── ProductRequiredEnabledDefinitionType.php │ ├── ProductSearchPageType.php │ ├── ProductSearchResultType.php │ ├── ProductSearchType.php │ ├── ProductSuggestionType.php │ ├── ProductSuggestionsType.php │ ├── ProductType.php │ ├── ProfileCategoryGroupDefinitionType.php │ ├── PromotedItemType.php │ ├── PromotionDetailsType.php │ ├── PromotionRuleArrayType.php │ ├── PromotionRuleType.php │ ├── PromotionalSaleArrayType.php │ ├── PromotionalSaleDetailsType.php │ ├── PromotionalSaleType.php │ ├── PromotionalShippingDiscountDetailsType.php │ ├── PurchaseReminderEmailPreferencesType.php │ ├── QuantityInfoType.php │ ├── QuantityRestrictionPerBuyerInfoType.php │ ├── QuantityType.php │ ├── RateTableDetailsType.php │ ├── ReasonCodeDetailType.php │ ├── RecommendationType.php │ ├── RecommendationValidationRulesType.php │ ├── RecommendationsType.php │ ├── RecoupmentPolicyConsentType.php │ ├── RecoupmentPolicyDetailsType.php │ ├── RefundArrayType.php │ ├── RefundDetailsType.php │ ├── RefundFailureReasonType.php │ ├── RefundFundingSourceArrayType.php │ ├── RefundFundingSourceType.php │ ├── RefundInformationType.php │ ├── RefundLineArrayType.php │ ├── RefundLineType.php │ ├── RefundTransactionArrayType.php │ ├── RefundTransactionInfoType.php │ ├── RefundTransactionType.php │ ├── RefundType.php │ ├── RegionDetailsType.php │ ├── RegionOfOriginDetailsType.php │ ├── RegularSubscriptionDefinitionType.php │ ├── RelistFixedPriceItemRequestType.php │ ├── RelistFixedPriceItemResponseType.php │ ├── RelistItemRequestType.php │ ├── RelistItemResponseType.php │ ├── ReminderCustomizationType.php │ ├── RemindersType.php │ ├── RemoveFromWatchListRequestType.php │ ├── RemoveFromWatchListResponseType.php │ ├── RequiredSellerActionArrayType.php │ ├── RespondToBestOfferRequestType.php │ ├── RespondToBestOfferResponseType.php │ ├── RespondToFeedbackRequestType.php │ ├── RespondToFeedbackResponseType.php │ ├── ResponseAttributeSetType.php │ ├── RestockingFeeValueDetailsType.php │ ├── ReturnPolicyDetailsType.php │ ├── ReturnPolicyEnabledDefinitionType.php │ ├── ReturnPolicyType.php │ ├── ReturnsAcceptedDetailsType.php │ ├── ReturnsWithinDetailsType.php │ ├── ReviewDetailsType.php │ ├── ReviewType.php │ ├── ReviseCheckoutStatusRequestType.php │ ├── ReviseCheckoutStatusResponseType.php │ ├── ReviseFixedPriceItemRequestType.php │ ├── ReviseFixedPriceItemResponseType.php │ ├── ReviseInventoryStatusRequestType.php │ ├── ReviseInventoryStatusResponseType.php │ ├── ReviseItemRequestType.php │ ├── ReviseItemResponseType.php │ ├── ReviseMyMessagesFoldersRequestType.php │ ├── ReviseMyMessagesFoldersResponseType.php │ ├── ReviseMyMessagesRequestType.php │ ├── ReviseMyMessagesResponseType.php │ ├── RevisePriceAllowedDefinitionType.php │ ├── ReviseQuantityAllowedDefinitionType.php │ ├── ReviseSellingManagerInventoryFolderRequestType.php │ ├── ReviseSellingManagerInventoryFolderResponseType.php │ ├── ReviseSellingManagerProductRequestType.php │ ├── ReviseSellingManagerProductResponseType.php │ ├── ReviseSellingManagerSaleRecordRequestType.php │ ├── ReviseSellingManagerSaleRecordResponseType.php │ ├── ReviseSellingManagerTemplateRequestType.php │ ├── ReviseSellingManagerTemplateResponseType.php │ ├── ReviseStatusType.php │ ├── RevokeTokenRequestType.php │ ├── RevokeTokenResponseType.php │ ├── SIFFTASRecommendationsType.php │ ├── SKUArrayType.php │ ├── SMSSubscriptionType.php │ ├── SafePaymentRequiredDefinitionType.php │ ├── SalesTaxType.php │ ├── SaveItemToSellingManagerTemplateRequestType.php │ ├── SaveItemToSellingManagerTemplateResponseType.php │ ├── ScheduleType.php │ ├── SchedulingInfoType.php │ ├── SearchAttributesType.php │ ├── SearchDetailsType.php │ ├── SearchStandingDashboardType.php │ ├── SellerAccountDashboardType.php │ ├── SellerContactDetailsEnabledDefinitionType.php │ ├── SellerDashboardAlertType.php │ ├── SellerDiscountType.php │ ├── SellerDiscountsType.php │ ├── SellerExcludeShipToLocationPreferencesType.php │ ├── SellerFavoriteItemPreferencesType.php │ ├── SellerFeeDiscountDashboardType.php │ ├── SellerPaymentPreferencesType.php │ ├── SellerPaymentProfileType.php │ ├── SellerPaymentType.php │ ├── SellerProfilePreferencesType.php │ ├── SellerProfilesType.php │ ├── SellerProvidedTitleSupportedDefinitionType.php │ ├── SellerRatingSummaryArrayType.php │ ├── SellerReturnPreferencesType.php │ ├── SellerReturnProfileType.php │ ├── SellerReverseDisputeRequestType.php │ ├── SellerReverseDisputeResponseType.php │ ├── SellerRoleMetricsType.php │ ├── SellerShippingProfileType.php │ ├── SellerType.php │ ├── SellereBayPaymentProcessConsentCodeType.php │ ├── SellingManagerAlertType.php │ ├── SellingManagerAutoListAccordingToScheduleType.php │ ├── SellingManagerAutoListMinActiveItemsType.php │ ├── SellingManagerAutoListType.php │ ├── SellingManagerAutoRelistType.php │ ├── SellingManagerAutoSecondChanceOfferType.php │ ├── SellingManagerEmailLogType.php │ ├── SellingManagerFolderDetailsType.php │ ├── SellingManagerOrderStatusType.php │ ├── SellingManagerProductDetailsType.php │ ├── SellingManagerProductInventoryStatusType.php │ ├── SellingManagerProductSpecificsType.php │ ├── SellingManagerProductType.php │ ├── SellingManagerSearchType.php │ ├── SellingManagerSoldOrderType.php │ ├── SellingManagerSoldTransactionType.php │ ├── SellingManagerTemplateDetailsArrayType.php │ ├── SellingManagerTemplateDetailsType.php │ ├── SellingManagerVendorDetailsType.php │ ├── SellingStatusType.php │ ├── SellingSummaryType.php │ ├── SendInvoiceRequestType.php │ ├── SendInvoiceResponseType.php │ ├── SetMessagePreferencesRequestType.php │ ├── SetMessagePreferencesResponseType.php │ ├── SetNotificationPreferencesRequestType.php │ ├── SetNotificationPreferencesResponseType.php │ ├── SetPromotionalSaleListingsRequestType.php │ ├── SetPromotionalSaleListingsResponseType.php │ ├── SetPromotionalSaleRequestType.php │ ├── SetPromotionalSaleResponseType.php │ ├── SetSellingManagerFeedbackOptionsRequestType.php │ ├── SetSellingManagerFeedbackOptionsResponseType.php │ ├── SetSellingManagerItemAutomationRuleRequestType.php │ ├── SetSellingManagerItemAutomationRuleResponseType.php │ ├── SetSellingManagerTemplateAutomationRuleRequestType.php │ ├── SetSellingManagerTemplateAutomationRuleResponseType.php │ ├── SetShippingDiscountProfilesRequestType.php │ ├── SetShippingDiscountProfilesResponseType.php │ ├── SetStoreCategoriesRequestType.php │ ├── SetStoreCategoriesResponseType.php │ ├── SetStoreCustomPageRequestType.php │ ├── SetStoreCustomPageResponseType.php │ ├── SetStorePreferencesRequestType.php │ ├── SetStorePreferencesResponseType.php │ ├── SetStoreRequestType.php │ ├── SetStoreResponseType.php │ ├── SetTaxTableRequestType.php │ ├── SetTaxTableResponseType.php │ ├── SetUserNotesRequestType.php │ ├── SetUserNotesResponseType.php │ ├── SetUserPreferencesRequestType.php │ ├── SetUserPreferencesResponseType.php │ ├── ShipPackageDetailsType.php │ ├── ShipmentLineItemType.php │ ├── ShipmentTrackingDetailsType.php │ ├── ShipmentType.php │ ├── ShippingCarrierDetailsType.php │ ├── ShippingCategoryDetailsType.php │ ├── ShippingCostPaidByDetailsType.php │ ├── ShippingDetailsType.php │ ├── ShippingEstimatedDeliveryInfoType.php │ ├── ShippingInsuranceType.php │ ├── ShippingLocationDetailsType.php │ ├── ShippingOverrideType.php │ ├── ShippingPackageDetailsType.php │ ├── ShippingPackageInfoType.php │ ├── ShippingServiceCostOverrideListType.php │ ├── ShippingServiceCostOverrideType.php │ ├── ShippingServiceDetailsType.php │ ├── ShippingServiceOptionsType.php │ ├── ShippingServicePackageDetailsType.php │ ├── ShippingTermRequiredDefinitionType.php │ ├── SiteBuyerRequirementDetailsType.php │ ├── SiteDefaultsType.php │ ├── SiteDetailsType.php │ ├── SiteHostedPictureDetailsType.php │ ├── SiteLocationType.php │ ├── SiteWideCharacteristicsType.php │ ├── SkypeMeNonTransactionalEnabledDefinitionType.php │ ├── SkypeMeTransactionalEnabledDefinitionType.php │ ├── SpecialitySubscriptionDefinitionType.php │ ├── StoreColorSchemeArrayType.php │ ├── StoreColorSchemeType.php │ ├── StoreColorType.php │ ├── StoreCustomCategoryArrayType.php │ ├── StoreCustomCategoryType.php │ ├── StoreCustomListingHeaderLinkType.php │ ├── StoreCustomListingHeaderType.php │ ├── StoreCustomPageArrayType.php │ ├── StoreCustomPageType.php │ ├── StoreFontType.php │ ├── StoreInventoryEnabledDefinitionType.php │ ├── StoreLogoArrayType.php │ ├── StoreLogoType.php │ ├── StoreOwnerExtendedListingDurationsDefinitionType.php │ ├── StoreOwnerExtendedListingDurationsEnabledDefinitionType.php │ ├── StoreOwnerExtendedListingDurationsType.php │ ├── StorePreferencesType.php │ ├── StoreSubscriptionArrayType.php │ ├── StoreSubscriptionType.php │ ├── StoreThemeArrayType.php │ ├── StoreThemeType.php │ ├── StoreType.php │ ├── StoreVacationPreferencesType.php │ ├── StorefrontType.php │ ├── SubscriptionType.php │ ├── SuggestedBidValueType.php │ ├── SuggestedCategoryArrayType.php │ ├── SuggestedCategoryType.php │ ├── SummaryEventScheduleType.php │ ├── SupportedEventTypesArrayType.php │ ├── SupportedSellerProfileType.php │ ├── SupportedSellerProfilesType.php │ ├── TCREnabledDefinitionType.php │ ├── TaxDetailsType.php │ ├── TaxIdentifierAttributeType.php │ ├── TaxIdentifierType.php │ ├── TaxJurisdictionType.php │ ├── TaxTableType.php │ ├── TaxesType.php │ ├── ThemeGroupType.php │ ├── TicketListingDetailsType.php │ ├── TimeRangeType.php │ ├── TimeZoneDetailsType.php │ ├── TokenStatusType.php │ ├── TopRatedSellerDetailsType.php │ ├── TransactionArrayType.php │ ├── TransactionReferenceType.php │ ├── TransactionStatusType.php │ ├── TransactionType.php │ ├── UPCEnabledDefinitionType.php │ ├── UPCIdentifierEnabledDefinitionType.php │ ├── URLDetailsType.php │ ├── UnitInfoType.php │ ├── UnitOfMeasurementDetailsType.php │ ├── UnitOfMeasurementType.php │ ├── UnpaidItemAssistancePreferencesType.php │ ├── UnpaidItemType.php │ ├── UploadSiteHostedPicturesRequestType.php │ ├── UploadSiteHostedPicturesResponseType.php │ ├── UserAgreementInfoType.php │ ├── UserConsentRequiredDefinitionType.php │ ├── UserDefinedListType.php │ ├── UserIDArrayType.php │ ├── UserIdPasswordType.php │ ├── UserIdentityType.php │ ├── UserType.php │ ├── VATDetailsType.php │ ├── VATRateType.php │ ├── VINSupportedDefinitionType.php │ ├── VRMSupportedDefinitionType.php │ ├── ValType.php │ ├── ValidateChallengeInputRequestType.php │ ├── ValidateChallengeInputResponseType.php │ ├── ValidateTestUserRegistrationRequestType.php │ ├── ValidateTestUserRegistrationResponseType.php │ ├── ValueCategoryDefinitionType.php │ ├── ValuePackEnabledDefinitionType.php │ ├── ValueRecommendationType.php │ ├── VariationDetailsType.php │ ├── VariationKeyType.php │ ├── VariationProductListingDetailsType.php │ ├── VariationSpecificPictureSetType.php │ ├── VariationType.php │ ├── VariationsEnabledDefinitionType.php │ ├── VariationsType.php │ ├── VeROReasonCodeDetailsType.php │ ├── VeROReportItemType.php │ ├── VeROReportItemsRequestType.php │ ├── VeROReportItemsResponseType.php │ ├── VeROReportItemsType.php │ ├── VeROReportedItemDetailsType.php │ ├── VeROReportedItemType.php │ ├── VeROSiteDetailType.php │ ├── VerifiedUserRequirementsDetailsType.php │ ├── VerifiedUserRequirementsType.php │ ├── VerifyAddFixedPriceItemRequestType.php │ ├── VerifyAddFixedPriceItemResponseType.php │ ├── VerifyAddItemRequestType.php │ ├── VerifyAddItemResponseType.php │ ├── VerifyAddSecondChanceItemRequestType.php │ ├── VerifyAddSecondChanceItemResponseType.php │ ├── VerifyRelistItemRequestType.php │ ├── VerifyRelistItemResponseType.php │ ├── WantItNowPostArrayType.php │ ├── WantItNowPostType.php │ ├── WarrantyDurationDetailsType.php │ ├── WarrantyOfferedDetailsType.php │ ├── WarrantyTypeDetailsType.php │ ├── XMLRequesterCredentialsType.php │ └── XSLFileType.php ├── Types ├── Base64BinaryType.php ├── BaseType.php ├── BooleanType.php ├── DecimalType.php ├── DoubleType.php ├── IntegerType.php ├── RepeatableType.php ├── StringType.php ├── TokenType.php └── URIType.php ├── UriResolver.php └── functions.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/NOTICE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Account/Enums/CategoryTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/CategoryTypeEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/CountryCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/CountryCodeEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/CurrencyCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/CurrencyCodeEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/MarketplaceIdEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/MarketplaceIdEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/ProgramTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/ProgramTypeEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/RefundMethodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/RefundMethodEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/RegionTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/RegionTypeEnum.php -------------------------------------------------------------------------------- /src/Account/Enums/ReturnMethodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Enums/ReturnMethodEnum.php -------------------------------------------------------------------------------- /src/Account/Services/AccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Services/AccountService.php -------------------------------------------------------------------------------- /src/Account/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/Amount.php -------------------------------------------------------------------------------- /src/Account/Types/CategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/CategoryType.php -------------------------------------------------------------------------------- /src/Account/Types/Deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/Deposit.php -------------------------------------------------------------------------------- /src/Account/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Account/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Account/Types/FulfillmentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/FulfillmentPolicy.php -------------------------------------------------------------------------------- /src/Account/Types/InventorySizing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/InventorySizing.php -------------------------------------------------------------------------------- /src/Account/Types/InventorySnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/InventorySnapshot.php -------------------------------------------------------------------------------- /src/Account/Types/LookbackPeriod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/LookbackPeriod.php -------------------------------------------------------------------------------- /src/Account/Types/PaymentMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/PaymentMethod.php -------------------------------------------------------------------------------- /src/Account/Types/PaymentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/PaymentPolicy.php -------------------------------------------------------------------------------- /src/Account/Types/Program.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/Program.php -------------------------------------------------------------------------------- /src/Account/Types/Programs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/Programs.php -------------------------------------------------------------------------------- /src/Account/Types/RateTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/RateTable.php -------------------------------------------------------------------------------- /src/Account/Types/RateTableResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/RateTableResponse.php -------------------------------------------------------------------------------- /src/Account/Types/Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/Region.php -------------------------------------------------------------------------------- /src/Account/Types/RegionSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/RegionSet.php -------------------------------------------------------------------------------- /src/Account/Types/ReturnPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/ReturnPolicy.php -------------------------------------------------------------------------------- /src/Account/Types/ReturnSnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/ReturnSnapshot.php -------------------------------------------------------------------------------- /src/Account/Types/SalesTax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/SalesTax.php -------------------------------------------------------------------------------- /src/Account/Types/SalesTaxBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/SalesTaxBase.php -------------------------------------------------------------------------------- /src/Account/Types/SalesTaxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/SalesTaxes.php -------------------------------------------------------------------------------- /src/Account/Types/SellingLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/SellingLimit.php -------------------------------------------------------------------------------- /src/Account/Types/SellingPrivileges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/SellingPrivileges.php -------------------------------------------------------------------------------- /src/Account/Types/ShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/ShippingOption.php -------------------------------------------------------------------------------- /src/Account/Types/ShippingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/ShippingService.php -------------------------------------------------------------------------------- /src/Account/Types/TimeDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/TimeDuration.php -------------------------------------------------------------------------------- /src/Account/Types/TransactionVolume.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Account/Types/TransactionVolume.php -------------------------------------------------------------------------------- /src/Analytics/Enums/CycleTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Enums/CycleTypeEnum.php -------------------------------------------------------------------------------- /src/Analytics/Enums/DataTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Enums/DataTypeEnum.php -------------------------------------------------------------------------------- /src/Analytics/Enums/ProgramEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Enums/ProgramEnum.php -------------------------------------------------------------------------------- /src/Analytics/Types/Cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Cycle.php -------------------------------------------------------------------------------- /src/Analytics/Types/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Definition.php -------------------------------------------------------------------------------- /src/Analytics/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Analytics/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Analytics/Types/FilterField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/FilterField.php -------------------------------------------------------------------------------- /src/Analytics/Types/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Header.php -------------------------------------------------------------------------------- /src/Analytics/Types/Metric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Metric.php -------------------------------------------------------------------------------- /src/Analytics/Types/RangeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/RangeValue.php -------------------------------------------------------------------------------- /src/Analytics/Types/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Record.php -------------------------------------------------------------------------------- /src/Analytics/Types/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Report.php -------------------------------------------------------------------------------- /src/Analytics/Types/StandardsProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/StandardsProfile.php -------------------------------------------------------------------------------- /src/Analytics/Types/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Analytics/Types/Value.php -------------------------------------------------------------------------------- /src/Browse/Enums/CountryCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/CountryCodeEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/CurrencyCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/CurrencyCodeEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/DeliveryOptionsEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/DeliveryOptionsEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/ItemGroupTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/ItemGroupTypeEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/RefundMethodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/RefundMethodEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/RegionTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/RegionTypeEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/ReturnMethodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/ReturnMethodEnum.php -------------------------------------------------------------------------------- /src/Browse/Enums/ValueTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Enums/ValueTypeEnum.php -------------------------------------------------------------------------------- /src/Browse/Services/BrowseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Services/BrowseService.php -------------------------------------------------------------------------------- /src/Browse/Types/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Address.php -------------------------------------------------------------------------------- /src/Browse/Types/AspectDistribution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/AspectDistribution.php -------------------------------------------------------------------------------- /src/Browse/Types/AspectFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/AspectFilter.php -------------------------------------------------------------------------------- /src/Browse/Types/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Category.php -------------------------------------------------------------------------------- /src/Browse/Types/CommonDescriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/CommonDescriptions.php -------------------------------------------------------------------------------- /src/Browse/Types/ConvertedAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ConvertedAmount.php -------------------------------------------------------------------------------- /src/Browse/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Browse/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Browse/Types/FilterField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/FilterField.php -------------------------------------------------------------------------------- /src/Browse/Types/GetItemRestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/GetItemRestRequest.php -------------------------------------------------------------------------------- /src/Browse/Types/GetItemRestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/GetItemRestResponse.php -------------------------------------------------------------------------------- /src/Browse/Types/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Image.php -------------------------------------------------------------------------------- /src/Browse/Types/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Item.php -------------------------------------------------------------------------------- /src/Browse/Types/ItemGroupSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ItemGroupSummary.php -------------------------------------------------------------------------------- /src/Browse/Types/ItemLocationImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ItemLocationImpl.php -------------------------------------------------------------------------------- /src/Browse/Types/ItemReturnTerms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ItemReturnTerms.php -------------------------------------------------------------------------------- /src/Browse/Types/ItemSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ItemSummary.php -------------------------------------------------------------------------------- /src/Browse/Types/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Items.php -------------------------------------------------------------------------------- /src/Browse/Types/LegalAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/LegalAddress.php -------------------------------------------------------------------------------- /src/Browse/Types/MarketingPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/MarketingPrice.php -------------------------------------------------------------------------------- /src/Browse/Types/PickupOptionSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/PickupOptionSummary.php -------------------------------------------------------------------------------- /src/Browse/Types/RangeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/RangeValue.php -------------------------------------------------------------------------------- /src/Browse/Types/RatingHistogram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/RatingHistogram.php -------------------------------------------------------------------------------- /src/Browse/Types/Refinement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Refinement.php -------------------------------------------------------------------------------- /src/Browse/Types/Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Region.php -------------------------------------------------------------------------------- /src/Browse/Types/ReviewRating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ReviewRating.php -------------------------------------------------------------------------------- /src/Browse/Types/Seller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Seller.php -------------------------------------------------------------------------------- /src/Browse/Types/SellerLegalInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/SellerLegalInfo.php -------------------------------------------------------------------------------- /src/Browse/Types/ShipToLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ShipToLocation.php -------------------------------------------------------------------------------- /src/Browse/Types/ShipToLocations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ShipToLocations.php -------------------------------------------------------------------------------- /src/Browse/Types/ShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/ShippingOption.php -------------------------------------------------------------------------------- /src/Browse/Types/SortField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/SortField.php -------------------------------------------------------------------------------- /src/Browse/Types/TargetLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/TargetLocation.php -------------------------------------------------------------------------------- /src/Browse/Types/TaxJurisdiction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/TaxJurisdiction.php -------------------------------------------------------------------------------- /src/Browse/Types/TaxType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/TaxType.php -------------------------------------------------------------------------------- /src/Browse/Types/Taxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/Taxes.php -------------------------------------------------------------------------------- /src/Browse/Types/TimeDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/TimeDuration.php -------------------------------------------------------------------------------- /src/Browse/Types/TypedNameValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/TypedNameValue.php -------------------------------------------------------------------------------- /src/Browse/Types/VatDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Browse/Types/VatDetail.php -------------------------------------------------------------------------------- /src/BulkDataExchange/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/BulkDataExchange/Enums/AckValue.php -------------------------------------------------------------------------------- /src/BulkDataExchange/Enums/FileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/BulkDataExchange/Enums/FileType.php -------------------------------------------------------------------------------- /src/BulkDataExchange/Enums/JobStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/BulkDataExchange/Enums/JobStatus.php -------------------------------------------------------------------------------- /src/BulkDataExchange/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/BulkDataExchange/Types/ErrorData.php -------------------------------------------------------------------------------- /src/Catalog/Enums/AspectDataTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Enums/AspectDataTypeEnum.php -------------------------------------------------------------------------------- /src/Catalog/Enums/AspectModeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Enums/AspectModeEnum.php -------------------------------------------------------------------------------- /src/Catalog/Enums/ChangeRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Enums/ChangeRequestType.php -------------------------------------------------------------------------------- /src/Catalog/Enums/ReferenceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Enums/ReferenceType.php -------------------------------------------------------------------------------- /src/Catalog/Services/CatalogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Services/CatalogService.php -------------------------------------------------------------------------------- /src/Catalog/Types/Aspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/Aspect.php -------------------------------------------------------------------------------- /src/Catalog/Types/AspectDistribution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/AspectDistribution.php -------------------------------------------------------------------------------- /src/Catalog/Types/AspectFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/AspectFilter.php -------------------------------------------------------------------------------- /src/Catalog/Types/CategoryAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/CategoryAspect.php -------------------------------------------------------------------------------- /src/Catalog/Types/ChangeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ChangeRequest.php -------------------------------------------------------------------------------- /src/Catalog/Types/ConflictingProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ConflictingProduct.php -------------------------------------------------------------------------------- /src/Catalog/Types/Correction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/Correction.php -------------------------------------------------------------------------------- /src/Catalog/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Catalog/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Catalog/Types/FilterField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/FilterField.php -------------------------------------------------------------------------------- /src/Catalog/Types/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/Image.php -------------------------------------------------------------------------------- /src/Catalog/Types/ProcessResolution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ProcessResolution.php -------------------------------------------------------------------------------- /src/Catalog/Types/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/Product.php -------------------------------------------------------------------------------- /src/Catalog/Types/ProductAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ProductAspect.php -------------------------------------------------------------------------------- /src/Catalog/Types/ProductAspectValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ProductAspectValue.php -------------------------------------------------------------------------------- /src/Catalog/Types/ProductIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ProductIdentifier.php -------------------------------------------------------------------------------- /src/Catalog/Types/ProductMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ProductMetadata.php -------------------------------------------------------------------------------- /src/Catalog/Types/ProductSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ProductSummary.php -------------------------------------------------------------------------------- /src/Catalog/Types/RangeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/RangeValue.php -------------------------------------------------------------------------------- /src/Catalog/Types/Refinement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/Refinement.php -------------------------------------------------------------------------------- /src/Catalog/Types/SearchRestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/SearchRestRequest.php -------------------------------------------------------------------------------- /src/Catalog/Types/SearchRestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/SearchRestResponse.php -------------------------------------------------------------------------------- /src/Catalog/Types/SuggestedProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/SuggestedProduct.php -------------------------------------------------------------------------------- /src/Catalog/Types/ValueConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/ValueConstraint.php -------------------------------------------------------------------------------- /src/Catalog/Types/Violation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Catalog/Types/Violation.php -------------------------------------------------------------------------------- /src/Compliance/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Compliance/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Compliance/Types/NameValueList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Compliance/Types/NameValueList.php -------------------------------------------------------------------------------- /src/ConfigurationResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ConfigurationResolver.php -------------------------------------------------------------------------------- /src/Constants/GlobalIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Constants/GlobalIds.php -------------------------------------------------------------------------------- /src/Constants/MarketplaceIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Constants/MarketplaceIds.php -------------------------------------------------------------------------------- /src/Constants/SiteIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Constants/SiteIds.php -------------------------------------------------------------------------------- /src/Credentials/Credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Credentials/Credentials.php -------------------------------------------------------------------------------- /src/Credentials/CredentialsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Credentials/CredentialsInterface.php -------------------------------------------------------------------------------- /src/Credentials/CredentialsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Credentials/CredentialsProvider.php -------------------------------------------------------------------------------- /src/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Debugger.php -------------------------------------------------------------------------------- /src/Feed/Enums/CurrencyCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Enums/CurrencyCodeEnum.php -------------------------------------------------------------------------------- /src/Feed/Services/FeedBaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Services/FeedBaseService.php -------------------------------------------------------------------------------- /src/Feed/Services/FeedService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Services/FeedService.php -------------------------------------------------------------------------------- /src/Feed/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Feed/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Feed/Types/ItemFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Types/ItemFeed.php -------------------------------------------------------------------------------- /src/Feed/Types/ItemFeedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feed/Types/ItemFeedResponse.php -------------------------------------------------------------------------------- /src/Feedback/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Enums/AckValue.php -------------------------------------------------------------------------------- /src/Feedback/Enums/ErrorCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Enums/ErrorCategory.php -------------------------------------------------------------------------------- /src/Feedback/Enums/ErrorSeverity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Enums/ErrorSeverity.php -------------------------------------------------------------------------------- /src/Feedback/Types/DSRSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Types/DSRSummary.php -------------------------------------------------------------------------------- /src/Feedback/Types/DateRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Types/DateRange.php -------------------------------------------------------------------------------- /src/Feedback/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Types/ErrorData.php -------------------------------------------------------------------------------- /src/Feedback/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/Feedback/Types/ErrorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Types/ErrorParameter.php -------------------------------------------------------------------------------- /src/Feedback/Types/TransactionKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Feedback/Types/TransactionKey.php -------------------------------------------------------------------------------- /src/FileTransfer/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Enums/AckValue.php -------------------------------------------------------------------------------- /src/FileTransfer/Enums/ErrorCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Enums/ErrorCategory.php -------------------------------------------------------------------------------- /src/FileTransfer/Enums/ErrorSeverity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Enums/ErrorSeverity.php -------------------------------------------------------------------------------- /src/FileTransfer/Types/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Types/Data.php -------------------------------------------------------------------------------- /src/FileTransfer/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Types/ErrorData.php -------------------------------------------------------------------------------- /src/FileTransfer/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/FileTransfer/Types/XopInclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/FileTransfer/Types/XopInclude.php -------------------------------------------------------------------------------- /src/Finding/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/AckValue.php -------------------------------------------------------------------------------- /src/Finding/Enums/ErrorCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/ErrorCategory.php -------------------------------------------------------------------------------- /src/Finding/Enums/ErrorSeverity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/ErrorSeverity.php -------------------------------------------------------------------------------- /src/Finding/Enums/GallerySizeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/GallerySizeEnum.php -------------------------------------------------------------------------------- /src/Finding/Enums/ItemFilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/ItemFilterType.php -------------------------------------------------------------------------------- /src/Finding/Enums/MapExposureEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/MapExposureEnum.php -------------------------------------------------------------------------------- /src/Finding/Enums/OutputSelectorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/OutputSelectorType.php -------------------------------------------------------------------------------- /src/Finding/Enums/PriceTreatmentEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/PriceTreatmentEnum.php -------------------------------------------------------------------------------- /src/Finding/Enums/SortOrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Enums/SortOrderType.php -------------------------------------------------------------------------------- /src/Finding/Services/FindingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Services/FindingService.php -------------------------------------------------------------------------------- /src/Finding/Types/Affiliate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Affiliate.php -------------------------------------------------------------------------------- /src/Finding/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Amount.php -------------------------------------------------------------------------------- /src/Finding/Types/Aspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Aspect.php -------------------------------------------------------------------------------- /src/Finding/Types/AspectFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/AspectFilter.php -------------------------------------------------------------------------------- /src/Finding/Types/BaseServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/BaseServiceRequest.php -------------------------------------------------------------------------------- /src/Finding/Types/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Category.php -------------------------------------------------------------------------------- /src/Finding/Types/CategoryHistogram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/CategoryHistogram.php -------------------------------------------------------------------------------- /src/Finding/Types/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Condition.php -------------------------------------------------------------------------------- /src/Finding/Types/ConditionHistogram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ConditionHistogram.php -------------------------------------------------------------------------------- /src/Finding/Types/DiscountPriceInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/DiscountPriceInfo.php -------------------------------------------------------------------------------- /src/Finding/Types/Distance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Distance.php -------------------------------------------------------------------------------- /src/Finding/Types/DomainFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/DomainFilter.php -------------------------------------------------------------------------------- /src/Finding/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ErrorData.php -------------------------------------------------------------------------------- /src/Finding/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/Finding/Types/ErrorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ErrorParameter.php -------------------------------------------------------------------------------- /src/Finding/Types/ExtensionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ExtensionType.php -------------------------------------------------------------------------------- /src/Finding/Types/GalleryURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/GalleryURL.php -------------------------------------------------------------------------------- /src/Finding/Types/GetVersionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/GetVersionRequest.php -------------------------------------------------------------------------------- /src/Finding/Types/GetVersionResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/GetVersionResponse.php -------------------------------------------------------------------------------- /src/Finding/Types/ItemAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ItemAttribute.php -------------------------------------------------------------------------------- /src/Finding/Types/ItemFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ItemFilter.php -------------------------------------------------------------------------------- /src/Finding/Types/ListingInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ListingInfo.php -------------------------------------------------------------------------------- /src/Finding/Types/PaginationInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/PaginationInput.php -------------------------------------------------------------------------------- /src/Finding/Types/PaginationOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/PaginationOutput.php -------------------------------------------------------------------------------- /src/Finding/Types/ProductId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ProductId.php -------------------------------------------------------------------------------- /src/Finding/Types/SearchItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/SearchItem.php -------------------------------------------------------------------------------- /src/Finding/Types/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/SearchResult.php -------------------------------------------------------------------------------- /src/Finding/Types/SellerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/SellerInfo.php -------------------------------------------------------------------------------- /src/Finding/Types/SellingStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/SellingStatus.php -------------------------------------------------------------------------------- /src/Finding/Types/ShippingInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/ShippingInfo.php -------------------------------------------------------------------------------- /src/Finding/Types/Storefront.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/Storefront.php -------------------------------------------------------------------------------- /src/Finding/Types/UnitPriceInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Finding/Types/UnitPriceInfo.php -------------------------------------------------------------------------------- /src/Fulfillment/Enums/RefundTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Enums/RefundTypeEnum.php -------------------------------------------------------------------------------- /src/Fulfillment/Enums/SoldFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Enums/SoldFormatEnum.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Address.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Amount.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Attribute.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Buyer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Buyer.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/CancelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/CancelRequest.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/CancelStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/CancelStatus.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Contact.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/DeliveryCost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/DeliveryCost.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Fee.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/FilterField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/FilterField.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/GiftDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/GiftDetails.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/LineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/LineItem.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/LineItemRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/LineItemRefund.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Order.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/OrderRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/OrderRefund.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Payment.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/PaymentHold.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/PaymentHold.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/PaymentSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/PaymentSummary.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/PhoneNumber.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/PricingSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/PricingSummary.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/RangeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/RangeValue.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/ShippingStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/ShippingStep.php -------------------------------------------------------------------------------- /src/Fulfillment/Types/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Fulfillment/Types/Tax.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/AckValue.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/ErrorCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/ErrorCategory.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/ErrorSeverity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/ErrorSeverity.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/ItemFilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/ItemFilterType.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/SortOnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/SortOnType.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/SortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/SortOrder.php -------------------------------------------------------------------------------- /src/HalfFinding/Enums/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Enums/Type.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/Amount.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/BaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/BaseRequest.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/BaseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/BaseResponse.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ErrorData.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ErrorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ErrorParameter.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ExtensionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ExtensionType.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ItemFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ItemFilter.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ItemType.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/ProductIDType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/ProductIDType.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/RentalAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/RentalAmount.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/SortByType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/SortByType.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/StorefrontType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/StorefrontType.php -------------------------------------------------------------------------------- /src/HalfFinding/Types/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HalfFinding/Types/UserType.php -------------------------------------------------------------------------------- /src/HttpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HttpHandler.php -------------------------------------------------------------------------------- /src/HttpHeadersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/HttpHeadersTrait.php -------------------------------------------------------------------------------- /src/Inventory/Enums/ConditionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/ConditionEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/CountryCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/CountryCodeEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/DayOfWeekEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/DayOfWeekEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/FormatTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/FormatTypeEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/MarketplaceEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/MarketplaceEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/OfferStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/OfferStatusEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/PackageTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/PackageTypeEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/SoldOnEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/SoldOnEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/StatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/StatusEnum.php -------------------------------------------------------------------------------- /src/Inventory/Enums/StoreTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Enums/StoreTypeEnum.php -------------------------------------------------------------------------------- /src/Inventory/Types/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Address.php -------------------------------------------------------------------------------- /src/Inventory/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Amount.php -------------------------------------------------------------------------------- /src/Inventory/Types/Availability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Availability.php -------------------------------------------------------------------------------- /src/Inventory/Types/BaseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/BaseResponse.php -------------------------------------------------------------------------------- /src/Inventory/Types/Compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Compatibility.php -------------------------------------------------------------------------------- /src/Inventory/Types/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Dimension.php -------------------------------------------------------------------------------- /src/Inventory/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Inventory/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Inventory/Types/Fee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Fee.php -------------------------------------------------------------------------------- /src/Inventory/Types/FeeSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/FeeSummary.php -------------------------------------------------------------------------------- /src/Inventory/Types/GeoCoordinates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/GeoCoordinates.php -------------------------------------------------------------------------------- /src/Inventory/Types/Interval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Interval.php -------------------------------------------------------------------------------- /src/Inventory/Types/InventoryItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/InventoryItem.php -------------------------------------------------------------------------------- /src/Inventory/Types/InventoryItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/InventoryItems.php -------------------------------------------------------------------------------- /src/Inventory/Types/ListingDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/ListingDetails.php -------------------------------------------------------------------------------- /src/Inventory/Types/ListingPolicies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/ListingPolicies.php -------------------------------------------------------------------------------- /src/Inventory/Types/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Location.php -------------------------------------------------------------------------------- /src/Inventory/Types/LocationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/LocationDetails.php -------------------------------------------------------------------------------- /src/Inventory/Types/LocationResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/LocationResponse.php -------------------------------------------------------------------------------- /src/Inventory/Types/MigrateListing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/MigrateListing.php -------------------------------------------------------------------------------- /src/Inventory/Types/OfferKeyWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/OfferKeyWithId.php -------------------------------------------------------------------------------- /src/Inventory/Types/OfferKeysWithId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/OfferKeysWithId.php -------------------------------------------------------------------------------- /src/Inventory/Types/OfferResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/OfferResponse.php -------------------------------------------------------------------------------- /src/Inventory/Types/Offers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Offers.php -------------------------------------------------------------------------------- /src/Inventory/Types/OperatingHours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/OperatingHours.php -------------------------------------------------------------------------------- /src/Inventory/Types/PriceQuantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/PriceQuantity.php -------------------------------------------------------------------------------- /src/Inventory/Types/PricingSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/PricingSummary.php -------------------------------------------------------------------------------- /src/Inventory/Types/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Product.php -------------------------------------------------------------------------------- /src/Inventory/Types/PublishResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/PublishResponse.php -------------------------------------------------------------------------------- /src/Inventory/Types/SpecialHours.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/SpecialHours.php -------------------------------------------------------------------------------- /src/Inventory/Types/Specification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Specification.php -------------------------------------------------------------------------------- /src/Inventory/Types/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Tax.php -------------------------------------------------------------------------------- /src/Inventory/Types/TimeDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/TimeDuration.php -------------------------------------------------------------------------------- /src/Inventory/Types/VariesBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/VariesBy.php -------------------------------------------------------------------------------- /src/Inventory/Types/Weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/Weight.php -------------------------------------------------------------------------------- /src/Inventory/Types/WithdrawResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Inventory/Types/WithdrawResponse.php -------------------------------------------------------------------------------- /src/JmesPath/AstRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/AstRuntime.php -------------------------------------------------------------------------------- /src/JmesPath/CompilerRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/CompilerRuntime.php -------------------------------------------------------------------------------- /src/JmesPath/DebugRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/DebugRuntime.php -------------------------------------------------------------------------------- /src/JmesPath/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/Env.php -------------------------------------------------------------------------------- /src/JmesPath/FnDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/FnDispatcher.php -------------------------------------------------------------------------------- /src/JmesPath/JmesPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/JmesPath.php -------------------------------------------------------------------------------- /src/JmesPath/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/Lexer.php -------------------------------------------------------------------------------- /src/JmesPath/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/Parser.php -------------------------------------------------------------------------------- /src/JmesPath/SyntaxErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/SyntaxErrorException.php -------------------------------------------------------------------------------- /src/JmesPath/TreeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/TreeCompiler.php -------------------------------------------------------------------------------- /src/JmesPath/TreeInterpreter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/TreeInterpreter.php -------------------------------------------------------------------------------- /src/JmesPath/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/JmesPath/Utils.php -------------------------------------------------------------------------------- /src/Marketing/Enums/CurrencyCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Enums/CurrencyCodeEnum.php -------------------------------------------------------------------------------- /src/Marketing/Enums/DataTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Enums/DataTypeEnum.php -------------------------------------------------------------------------------- /src/Marketing/Enums/FundingModelEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Enums/FundingModelEnum.php -------------------------------------------------------------------------------- /src/Marketing/Enums/ReportFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Enums/ReportFormatEnum.php -------------------------------------------------------------------------------- /src/Marketing/Enums/ReportTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Enums/ReportTypeEnum.php -------------------------------------------------------------------------------- /src/Marketing/Enums/TaskStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Enums/TaskStatusEnum.php -------------------------------------------------------------------------------- /src/Marketing/Types/Ad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/Ad.php -------------------------------------------------------------------------------- /src/Marketing/Types/AdIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/AdIds.php -------------------------------------------------------------------------------- /src/Marketing/Types/AdReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/AdReference.php -------------------------------------------------------------------------------- /src/Marketing/Types/AdReferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/AdReferences.php -------------------------------------------------------------------------------- /src/Marketing/Types/AdResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/AdResponse.php -------------------------------------------------------------------------------- /src/Marketing/Types/Ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/Ads.php -------------------------------------------------------------------------------- /src/Marketing/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/Amount.php -------------------------------------------------------------------------------- /src/Marketing/Types/BaseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/BaseResponse.php -------------------------------------------------------------------------------- /src/Marketing/Types/BulkAdResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/BulkAdResponse.php -------------------------------------------------------------------------------- /src/Marketing/Types/Campaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/Campaign.php -------------------------------------------------------------------------------- /src/Marketing/Types/Campaigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/Campaigns.php -------------------------------------------------------------------------------- /src/Marketing/Types/CreateAdRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/CreateAdRequest.php -------------------------------------------------------------------------------- /src/Marketing/Types/CreateReportTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/CreateReportTask.php -------------------------------------------------------------------------------- /src/Marketing/Types/DeleteAdRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/DeleteAdRequest.php -------------------------------------------------------------------------------- /src/Marketing/Types/DeleteAdResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/DeleteAdResponse.php -------------------------------------------------------------------------------- /src/Marketing/Types/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/Dimension.php -------------------------------------------------------------------------------- /src/Marketing/Types/DiscountBenefit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/DiscountBenefit.php -------------------------------------------------------------------------------- /src/Marketing/Types/DiscountRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/DiscountRule.php -------------------------------------------------------------------------------- /src/Marketing/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Marketing/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Marketing/Types/FundingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/FundingStrategy.php -------------------------------------------------------------------------------- /src/Marketing/Types/InventoryItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/InventoryItem.php -------------------------------------------------------------------------------- /src/Marketing/Types/ItemPromotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ItemPromotion.php -------------------------------------------------------------------------------- /src/Marketing/Types/ListingDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ListingDetail.php -------------------------------------------------------------------------------- /src/Marketing/Types/MetricMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/MetricMetadata.php -------------------------------------------------------------------------------- /src/Marketing/Types/PromotionDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/PromotionDetail.php -------------------------------------------------------------------------------- /src/Marketing/Types/ReportMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ReportMetadata.php -------------------------------------------------------------------------------- /src/Marketing/Types/ReportMetadatas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ReportMetadatas.php -------------------------------------------------------------------------------- /src/Marketing/Types/ReportTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/ReportTask.php -------------------------------------------------------------------------------- /src/Marketing/Types/RuleCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/RuleCriteria.php -------------------------------------------------------------------------------- /src/Marketing/Types/SelectionRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/SelectionRule.php -------------------------------------------------------------------------------- /src/Marketing/Types/SortField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Marketing/Types/SortField.php -------------------------------------------------------------------------------- /src/Merchandising/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Enums/AckValue.php -------------------------------------------------------------------------------- /src/Merchandising/Types/Affiliate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/Affiliate.php -------------------------------------------------------------------------------- /src/Merchandising/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/Amount.php -------------------------------------------------------------------------------- /src/Merchandising/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/ErrorData.php -------------------------------------------------------------------------------- /src/Merchandising/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/Merchandising/Types/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/Item.php -------------------------------------------------------------------------------- /src/Merchandising/Types/ItemFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/ItemFilter.php -------------------------------------------------------------------------------- /src/Merchandising/Types/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/Product.php -------------------------------------------------------------------------------- /src/Merchandising/Types/ProductId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Merchandising/Types/ProductId.php -------------------------------------------------------------------------------- /src/MerchantData/Enums/AckCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Enums/AckCodeType.php -------------------------------------------------------------------------------- /src/MerchantData/Enums/DaysCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Enums/DaysCodeType.php -------------------------------------------------------------------------------- /src/MerchantData/Enums/SiteCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Enums/SiteCodeType.php -------------------------------------------------------------------------------- /src/MerchantData/MerchantData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/MerchantData.php -------------------------------------------------------------------------------- /src/MerchantData/Types/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/AddressType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/AmountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/AmountType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/AttributeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/AttributeType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/BrandMPNType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/BrandMPNType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/BuyerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/BuyerType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/CategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/CategoryType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/CharityIDType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/CharityIDType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/CharityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/CharityType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/DistanceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/DistanceType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/ErrorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/ErrorType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/FeeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/FeeType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/FeesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/FeesType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/ItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/ItemType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/LabelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/LabelType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/LineItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/LineItemType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/MeasureType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/MeasureType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/MetadataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/MetadataType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/OrderType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/PicturesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/PicturesType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/RefundType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/RefundType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/SalesTaxType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/SalesTaxType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/SellerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/SellerType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/ShipmentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/ShipmentType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/TaxTableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/TaxTableType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/TaxesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/TaxesType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/UnitInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/UnitInfoType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/UserType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/ValType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/ValType.php -------------------------------------------------------------------------------- /src/MerchantData/Types/VariationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/MerchantData/Types/VariationType.php -------------------------------------------------------------------------------- /src/Metadata/Enums/CountryCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Metadata/Enums/CountryCodeEnum.php -------------------------------------------------------------------------------- /src/Metadata/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Metadata/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Metadata/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Metadata/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Metadata/Types/ItemCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Metadata/Types/ItemCondition.php -------------------------------------------------------------------------------- /src/Metadata/Types/ReturnPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Metadata/Types/ReturnPolicy.php -------------------------------------------------------------------------------- /src/OAuth/Services/OAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/OAuth/Services/OAuthService.php -------------------------------------------------------------------------------- /src/Order/Enums/CountryCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Enums/CountryCodeEnum.php -------------------------------------------------------------------------------- /src/Order/Enums/CurrencyCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Enums/CurrencyCodeEnum.php -------------------------------------------------------------------------------- /src/Order/Enums/LineItemStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Enums/LineItemStatusEnum.php -------------------------------------------------------------------------------- /src/Order/Services/OrderBaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Services/OrderBaseService.php -------------------------------------------------------------------------------- /src/Order/Services/OrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Services/OrderService.php -------------------------------------------------------------------------------- /src/Order/Types/Adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/Adjustment.php -------------------------------------------------------------------------------- /src/Order/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/Amount.php -------------------------------------------------------------------------------- /src/Order/Types/BillingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/BillingAddress.php -------------------------------------------------------------------------------- /src/Order/Types/CreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/CreditCard.php -------------------------------------------------------------------------------- /src/Order/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Order/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Order/Types/GuestPurchaseOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/GuestPurchaseOrder.php -------------------------------------------------------------------------------- /src/Order/Types/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/Image.php -------------------------------------------------------------------------------- /src/Order/Types/LineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/LineItem.php -------------------------------------------------------------------------------- /src/Order/Types/LineItemInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/LineItemInput.php -------------------------------------------------------------------------------- /src/Order/Types/LineItemReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/LineItemReference.php -------------------------------------------------------------------------------- /src/Order/Types/PaymentInstrument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PaymentInstrument.php -------------------------------------------------------------------------------- /src/Order/Types/PaymentMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PaymentMethod.php -------------------------------------------------------------------------------- /src/Order/Types/PaymentMethodBrand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PaymentMethodBrand.php -------------------------------------------------------------------------------- /src/Order/Types/PaymentMethodMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PaymentMethodMessage.php -------------------------------------------------------------------------------- /src/Order/Types/PricingSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PricingSummary.php -------------------------------------------------------------------------------- /src/Order/Types/Promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/Promotion.php -------------------------------------------------------------------------------- /src/Order/Types/PurchaseOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PurchaseOrder.php -------------------------------------------------------------------------------- /src/Order/Types/PurchaseOrderSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/PurchaseOrderSummary.php -------------------------------------------------------------------------------- /src/Order/Types/Seller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/Seller.php -------------------------------------------------------------------------------- /src/Order/Types/ShippingAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ShippingAddress.php -------------------------------------------------------------------------------- /src/Order/Types/ShippingAddressImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ShippingAddressImpl.php -------------------------------------------------------------------------------- /src/Order/Types/ShippingDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ShippingDetail.php -------------------------------------------------------------------------------- /src/Order/Types/ShippingFulfillment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ShippingFulfillment.php -------------------------------------------------------------------------------- /src/Order/Types/ShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/ShippingOption.php -------------------------------------------------------------------------------- /src/Order/Types/UpdateQuantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/UpdateQuantity.php -------------------------------------------------------------------------------- /src/Order/Types/UpdateShippingOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Order/Types/UpdateShippingOption.php -------------------------------------------------------------------------------- /src/Parser/JsonParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Parser/JsonParser.php -------------------------------------------------------------------------------- /src/Parser/XmlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Parser/XmlParser.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/AddressTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/AddressTypeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/AppealStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/AppealStatusEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CancelReasonEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CancelReasonEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CancelStateEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CancelStateEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CancelStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CancelStatusEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CaseStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CaseStatusEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CaseTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CaseTypeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CountryCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CountryCodeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/CurrencyCodeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/CurrencyCodeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/DecisionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/DecisionEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/FileFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/FileFormatEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/FilePurposeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/FilePurposeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/FileStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/FileStatusEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/InquiryStateEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/InquiryStateEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/LabelActionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/LabelActionEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/LanguageEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/LanguageEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/OrderTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/OrderTypeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/PartyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/PartyEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/RefundStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/RefundStatusEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/RequestTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/RequestTypeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/ReturnReasonEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/ReturnReasonEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/ReturnSortEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/ReturnSortEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/ReturnStateEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/ReturnStateEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/ReturnStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/ReturnStatusEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/ReturnTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/ReturnTypeEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/UserPartyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/UserPartyEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Enums/WorldRegionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Enums/WorldRegionEnum.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ActionDeadlines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ActionDeadlines.php -------------------------------------------------------------------------------- /src/PostOrder/Types/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/Address.php -------------------------------------------------------------------------------- /src/PostOrder/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/Amount.php -------------------------------------------------------------------------------- /src/PostOrder/Types/AppealDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/AppealDetails.php -------------------------------------------------------------------------------- /src/PostOrder/Types/AppealRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/AppealRequest.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CancelDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CancelDetail.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CancelSortField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CancelSortField.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CancelSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CancelSummary.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CaseDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CaseDetails.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CaseStatusFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CaseStatusFilter.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CaseSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CaseSummaryType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CountSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CountSummaryType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/CustomListType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/CustomListType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/DateTime.php -------------------------------------------------------------------------------- /src/PostOrder/Types/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/Error.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ErrorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ErrorParameter.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/PostOrder/Types/EscalateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/EscalateRequest.php -------------------------------------------------------------------------------- /src/PostOrder/Types/EscalateResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/EscalateResponse.php -------------------------------------------------------------------------------- /src/PostOrder/Types/GetFileResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/GetFileResponse.php -------------------------------------------------------------------------------- /src/PostOrder/Types/InquiryDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/InquiryDetails.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ItemDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ItemDetailType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ItemDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ItemDetails.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ListDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ListDataType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/MoneyMovementRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/MoneyMovementRef.php -------------------------------------------------------------------------------- /src/PostOrder/Types/PaginationOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/PaginationOutput.php -------------------------------------------------------------------------------- /src/PostOrder/Types/PriorityListType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/PriorityListType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/RefundAmounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/RefundAmounts.php -------------------------------------------------------------------------------- /src/PostOrder/Types/RefundDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/RefundDetailType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/RefundInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/RefundInfoType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/RefundType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/RefundType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ReturnAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ReturnAddress.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ReturnDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ReturnDetailType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ReturnFileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ReturnFileType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ReturnItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ReturnItemType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ReturnPolicyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ReturnPolicyType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ReturnSortField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ReturnSortField.php -------------------------------------------------------------------------------- /src/PostOrder/Types/RuleDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/RuleDetailType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/RuleSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/RuleSummaryType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ScanDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ScanDetailType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/ShipmentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/ShipmentType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/StatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/StatusType.php -------------------------------------------------------------------------------- /src/PostOrder/Types/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/Text.php -------------------------------------------------------------------------------- /src/PostOrder/Types/VoidLabelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/PostOrder/Types/VoidLabelRequest.php -------------------------------------------------------------------------------- /src/Product/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/AckValue.php -------------------------------------------------------------------------------- /src/Product/Enums/ErrorCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/ErrorCategory.php -------------------------------------------------------------------------------- /src/Product/Enums/ErrorSeverity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/ErrorSeverity.php -------------------------------------------------------------------------------- /src/Product/Enums/MediaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/MediaType.php -------------------------------------------------------------------------------- /src/Product/Enums/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/OrderType.php -------------------------------------------------------------------------------- /src/Product/Enums/OutputSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/OutputSelector.php -------------------------------------------------------------------------------- /src/Product/Enums/SortPriority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/SortPriority.php -------------------------------------------------------------------------------- /src/Product/Enums/SortType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Enums/SortType.php -------------------------------------------------------------------------------- /src/Product/Services/ProductService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Services/ProductService.php -------------------------------------------------------------------------------- /src/Product/Types/AddProductResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/AddProductResponse.php -------------------------------------------------------------------------------- /src/Product/Types/AddProductsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/AddProductsRequest.php -------------------------------------------------------------------------------- /src/Product/Types/BaseServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/BaseServiceRequest.php -------------------------------------------------------------------------------- /src/Product/Types/CompatibilitySort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/CompatibilitySort.php -------------------------------------------------------------------------------- /src/Product/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ErrorData.php -------------------------------------------------------------------------------- /src/Product/Types/ErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ErrorMessage.php -------------------------------------------------------------------------------- /src/Product/Types/ErrorParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ErrorParameter.php -------------------------------------------------------------------------------- /src/Product/Types/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/Media.php -------------------------------------------------------------------------------- /src/Product/Types/MediaIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/MediaIdentifier.php -------------------------------------------------------------------------------- /src/Product/Types/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/Notes.php -------------------------------------------------------------------------------- /src/Product/Types/NumericValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/NumericValue.php -------------------------------------------------------------------------------- /src/Product/Types/PaginationInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/PaginationInput.php -------------------------------------------------------------------------------- /src/Product/Types/PaginationOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/PaginationOutput.php -------------------------------------------------------------------------------- /src/Product/Types/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/Product.php -------------------------------------------------------------------------------- /src/Product/Types/ProductIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ProductIdentifier.php -------------------------------------------------------------------------------- /src/Product/Types/ProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ProductRequest.php -------------------------------------------------------------------------------- /src/Product/Types/ProductResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ProductResponse.php -------------------------------------------------------------------------------- /src/Product/Types/ProductStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ProductStatus.php -------------------------------------------------------------------------------- /src/Product/Types/ProductSubmission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/ProductSubmission.php -------------------------------------------------------------------------------- /src/Product/Types/PropertyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/PropertyValue.php -------------------------------------------------------------------------------- /src/Product/Types/SortOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/SortOption.php -------------------------------------------------------------------------------- /src/Product/Types/SortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/SortOrder.php -------------------------------------------------------------------------------- /src/Product/Types/StockPhotoURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/StockPhotoURL.php -------------------------------------------------------------------------------- /src/Product/Types/StringValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/StringValue.php -------------------------------------------------------------------------------- /src/Product/Types/URIValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/URIValue.php -------------------------------------------------------------------------------- /src/Product/Types/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Product/Types/Value.php -------------------------------------------------------------------------------- /src/ProductMetadata/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Enums/AckValue.php -------------------------------------------------------------------------------- /src/ProductMetadata/Enums/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Enums/OrderType.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/ErrorData.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/Properties.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/Property.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/SortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/SortOrder.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/Tag.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/URIValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/URIValue.php -------------------------------------------------------------------------------- /src/ProductMetadata/Types/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ProductMetadata/Types/Value.php -------------------------------------------------------------------------------- /src/ReturnManagement/Enums/AckValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ReturnManagement/Enums/AckValue.php -------------------------------------------------------------------------------- /src/ReturnManagement/Enums/CaseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ReturnManagement/Enums/CaseType.php -------------------------------------------------------------------------------- /src/ReturnManagement/Types/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ReturnManagement/Types/Address.php -------------------------------------------------------------------------------- /src/ReturnManagement/Types/Amount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ReturnManagement/Types/Amount.php -------------------------------------------------------------------------------- /src/ReturnManagement/Types/ErrorData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/ReturnManagement/Types/ErrorData.php -------------------------------------------------------------------------------- /src/Sdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Sdk.php -------------------------------------------------------------------------------- /src/Services/BaseRestService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Services/BaseRestService.php -------------------------------------------------------------------------------- /src/Services/BaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Services/BaseService.php -------------------------------------------------------------------------------- /src/Shopping/Enums/AckCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/AckCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Enums/CountryCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/CountryCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Enums/CurrencyCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/CurrencyCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Enums/ProductIDCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/ProductIDCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Enums/SeverityCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/SeverityCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Enums/SiteCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/SiteCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Enums/SortOrderCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Enums/SortOrderCodeType.php -------------------------------------------------------------------------------- /src/Shopping/Types/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/AddressType.php -------------------------------------------------------------------------------- /src/Shopping/Types/AmountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/AmountType.php -------------------------------------------------------------------------------- /src/Shopping/Types/BuyingGuideType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/BuyingGuideType.php -------------------------------------------------------------------------------- /src/Shopping/Types/CategoryArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/CategoryArrayType.php -------------------------------------------------------------------------------- /src/Shopping/Types/CategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/CategoryType.php -------------------------------------------------------------------------------- /src/Shopping/Types/CharityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/CharityType.php -------------------------------------------------------------------------------- /src/Shopping/Types/DistanceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/DistanceType.php -------------------------------------------------------------------------------- /src/Shopping/Types/ErrorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/ErrorType.php -------------------------------------------------------------------------------- /src/Shopping/Types/HalfProductsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/HalfProductsType.php -------------------------------------------------------------------------------- /src/Shopping/Types/NameValueListType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/NameValueListType.php -------------------------------------------------------------------------------- /src/Shopping/Types/PicturesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/PicturesType.php -------------------------------------------------------------------------------- /src/Shopping/Types/ProductIDType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/ProductIDType.php -------------------------------------------------------------------------------- /src/Shopping/Types/QuantityInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/QuantityInfo.php -------------------------------------------------------------------------------- /src/Shopping/Types/ReturnPolicyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/ReturnPolicyType.php -------------------------------------------------------------------------------- /src/Shopping/Types/ReviewDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/ReviewDetailsType.php -------------------------------------------------------------------------------- /src/Shopping/Types/ReviewType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/ReviewType.php -------------------------------------------------------------------------------- /src/Shopping/Types/SalesTaxType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/SalesTaxType.php -------------------------------------------------------------------------------- /src/Shopping/Types/SellingStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/SellingStatusType.php -------------------------------------------------------------------------------- /src/Shopping/Types/SimpleItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/SimpleItemType.php -------------------------------------------------------------------------------- /src/Shopping/Types/SimpleUserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/SimpleUserType.php -------------------------------------------------------------------------------- /src/Shopping/Types/StorefrontType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/StorefrontType.php -------------------------------------------------------------------------------- /src/Shopping/Types/TaxTableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/TaxTableType.php -------------------------------------------------------------------------------- /src/Shopping/Types/UnitInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/UnitInfoType.php -------------------------------------------------------------------------------- /src/Shopping/Types/VATDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/VATDetailsType.php -------------------------------------------------------------------------------- /src/Shopping/Types/VariationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/VariationType.php -------------------------------------------------------------------------------- /src/Shopping/Types/VariationsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Shopping/Types/VariationsType.php -------------------------------------------------------------------------------- /src/StatusCodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/StatusCodeTrait.php -------------------------------------------------------------------------------- /src/Taxonomy/Enums/AspectModeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Enums/AspectModeEnum.php -------------------------------------------------------------------------------- /src/Taxonomy/Enums/MarketplaceIdEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Enums/MarketplaceIdEnum.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/AncestorReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/AncestorReference.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/Aspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/Aspect.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/AspectConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/AspectConstraint.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/AspectMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/AspectMetadata.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/AspectValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/AspectValue.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/BaseCategoryTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/BaseCategoryTree.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/Category.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/CategorySubtree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/CategorySubtree.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/CategoryTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/CategoryTree.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/CategoryTreeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/CategoryTreeNode.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/ErrorDetailV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/ErrorDetailV3.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/ErrorParameterV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/ErrorParameterV3.php -------------------------------------------------------------------------------- /src/Taxonomy/Types/ValueConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Taxonomy/Types/ValueConstraint.php -------------------------------------------------------------------------------- /src/Trading/Enums/AckCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/AckCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/BalanceCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/BalanceCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/BidActionCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/BidActionCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/BidderTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/BidderTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/BoldTitleCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/BoldTitleCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/BorderCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/BorderCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/BusinessRoleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/BusinessRoleType.php -------------------------------------------------------------------------------- /src/Trading/Enums/CountryCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/CountryCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/CurrencyCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/CurrencyCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/DayOfWeekCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/DayOfWeekCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/DaysCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/DaysCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/DetailNameCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/DetailNameCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/DeviceTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/DeviceTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/DiscountCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/DiscountCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/EnableCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/EnableCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/EndReasonCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/EndReasonCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/EscrowCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/EscrowCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/FeatureIDCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/FeatureIDCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/GiftIconCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/GiftIconCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/HighlightCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/HighlightCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/HitCounterCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/HitCounterCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/ItemTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/ItemTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/LogoTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/LogoTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/OrderRoleCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/OrderRoleCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/PaidStatusCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/PaidStatusCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/PayoutMethodType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/PayoutMethodType.php -------------------------------------------------------------------------------- /src/Trading/Enums/PeriodCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/PeriodCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/PictureSetCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/PictureSetCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/ProPackCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/ProPackCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/RangeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/RangeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/RefundTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/RefundTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/SearchFlagCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/SearchFlagCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/SeverityCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/SeverityCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/SiteCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/SiteCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/SortOrderCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/SortOrderCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/TaskStatusCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/TaskStatusCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/TaxTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/TaxTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/URLTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/URLTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/UnitCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/UnitCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/UserStatusCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/UserStatusCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/VATStatusCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/VATStatusCodeType.php -------------------------------------------------------------------------------- /src/Trading/Enums/ValueTypeCodeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Enums/ValueTypeCodeType.php -------------------------------------------------------------------------------- /src/Trading/Services/TradingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Services/TradingService.php -------------------------------------------------------------------------------- /src/Trading/Types/ASQPreferencesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ASQPreferencesType.php -------------------------------------------------------------------------------- /src/Trading/Types/AccountEntriesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AccountEntriesType.php -------------------------------------------------------------------------------- /src/Trading/Types/AccountEntryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AccountEntryType.php -------------------------------------------------------------------------------- /src/Trading/Types/AccountSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AccountSummaryType.php -------------------------------------------------------------------------------- /src/Trading/Types/AdFormatLeadType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AdFormatLeadType.php -------------------------------------------------------------------------------- /src/Trading/Types/AddItemRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AddItemRequestType.php -------------------------------------------------------------------------------- /src/Trading/Types/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AddressType.php -------------------------------------------------------------------------------- /src/Trading/Types/AmountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AmountType.php -------------------------------------------------------------------------------- /src/Trading/Types/ApiAccessRuleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ApiAccessRuleType.php -------------------------------------------------------------------------------- /src/Trading/Types/AttributeArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AttributeArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/AttributeSetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AttributeSetType.php -------------------------------------------------------------------------------- /src/Trading/Types/AttributeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/AttributeType.php -------------------------------------------------------------------------------- /src/Trading/Types/Base64BinaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/Base64BinaryType.php -------------------------------------------------------------------------------- /src/Trading/Types/BasicAmountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BasicAmountType.php -------------------------------------------------------------------------------- /src/Trading/Types/BestOfferArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BestOfferArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/BestOfferType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BestOfferType.php -------------------------------------------------------------------------------- /src/Trading/Types/BidApprovalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BidApprovalType.php -------------------------------------------------------------------------------- /src/Trading/Types/BidGroupArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BidGroupArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/BidGroupItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BidGroupItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/BidGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BidGroupType.php -------------------------------------------------------------------------------- /src/Trading/Types/BidderDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BidderDetailType.php -------------------------------------------------------------------------------- /src/Trading/Types/BiddingDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BiddingDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/BiddingSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BiddingSummaryType.php -------------------------------------------------------------------------------- /src/Trading/Types/BrandMPNType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BrandMPNType.php -------------------------------------------------------------------------------- /src/Trading/Types/BuyerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BuyerType.php -------------------------------------------------------------------------------- /src/Trading/Types/BuyingGuideType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BuyingGuideType.php -------------------------------------------------------------------------------- /src/Trading/Types/BuyingSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/BuyingSummaryType.php -------------------------------------------------------------------------------- /src/Trading/Types/CancelDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CancelDetailType.php -------------------------------------------------------------------------------- /src/Trading/Types/CancelOfferType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CancelOfferType.php -------------------------------------------------------------------------------- /src/Trading/Types/CartItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CartItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/CatalogProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CatalogProductType.php -------------------------------------------------------------------------------- /src/Trading/Types/CategoryArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CategoryArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/CategoryGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CategoryGroupType.php -------------------------------------------------------------------------------- /src/Trading/Types/CategoryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CategoryType.php -------------------------------------------------------------------------------- /src/Trading/Types/CharacteristicType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CharacteristicType.php -------------------------------------------------------------------------------- /src/Trading/Types/CharityIDType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CharityIDType.php -------------------------------------------------------------------------------- /src/Trading/Types/CharityInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CharityInfoType.php -------------------------------------------------------------------------------- /src/Trading/Types/CharitySellerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CharitySellerType.php -------------------------------------------------------------------------------- /src/Trading/Types/CharityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CharityType.php -------------------------------------------------------------------------------- /src/Trading/Types/CheckoutStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CheckoutStatusType.php -------------------------------------------------------------------------------- /src/Trading/Types/ConditionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ConditionType.php -------------------------------------------------------------------------------- /src/Trading/Types/CountryDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/CountryDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/DataElementSetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DataElementSetType.php -------------------------------------------------------------------------------- /src/Trading/Types/DateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DateType.php -------------------------------------------------------------------------------- /src/Trading/Types/DeliveryStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DeliveryStatusType.php -------------------------------------------------------------------------------- /src/Trading/Types/DisputeArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DisputeArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/DisputeMessageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DisputeMessageType.php -------------------------------------------------------------------------------- /src/Trading/Types/DisputeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DisputeType.php -------------------------------------------------------------------------------- /src/Trading/Types/DistanceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/DistanceType.php -------------------------------------------------------------------------------- /src/Trading/Types/EndItemRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/EndItemRequestType.php -------------------------------------------------------------------------------- /src/Trading/Types/ErrorParameterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ErrorParameterType.php -------------------------------------------------------------------------------- /src/Trading/Types/ErrorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ErrorType.php -------------------------------------------------------------------------------- /src/Trading/Types/FaultDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/FaultDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/FeeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/FeeType.php -------------------------------------------------------------------------------- /src/Trading/Types/FeedbackDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/FeedbackDetailType.php -------------------------------------------------------------------------------- /src/Trading/Types/FeedbackInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/FeedbackInfoType.php -------------------------------------------------------------------------------- /src/Trading/Types/FeedbackPeriodType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/FeedbackPeriodType.php -------------------------------------------------------------------------------- /src/Trading/Types/FeesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/FeesType.php -------------------------------------------------------------------------------- /src/Trading/Types/GetItemRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/GetItemRequestType.php -------------------------------------------------------------------------------- /src/Trading/Types/GetUserRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/GetUserRequestType.php -------------------------------------------------------------------------------- /src/Trading/Types/GiftSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/GiftSummaryType.php -------------------------------------------------------------------------------- /src/Trading/Types/HistogramEntryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/HistogramEntryType.php -------------------------------------------------------------------------------- /src/Trading/Types/InventoryFeesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/InventoryFeesType.php -------------------------------------------------------------------------------- /src/Trading/Types/ItemArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ItemArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/ItemBestOffersType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ItemBestOffersType.php -------------------------------------------------------------------------------- /src/Trading/Types/ItemBidDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ItemBidDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/ItemIDArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ItemIDArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/ItemTotalsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ItemTotalsType.php -------------------------------------------------------------------------------- /src/Trading/Types/ItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/LabelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/LabelType.php -------------------------------------------------------------------------------- /src/Trading/Types/LineItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/LineItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/ListingDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ListingDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/ListingTipType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ListingTipType.php -------------------------------------------------------------------------------- /src/Trading/Types/LocalSearchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/LocalSearchType.php -------------------------------------------------------------------------------- /src/Trading/Types/MeasureType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/MeasureType.php -------------------------------------------------------------------------------- /src/Trading/Types/MemberMessageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/MemberMessageType.php -------------------------------------------------------------------------------- /src/Trading/Types/MessageMediaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/MessageMediaType.php -------------------------------------------------------------------------------- /src/Trading/Types/MetadataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/MetadataType.php -------------------------------------------------------------------------------- /src/Trading/Types/ModifyNameType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ModifyNameType.php -------------------------------------------------------------------------------- /src/Trading/Types/NameValueListType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/NameValueListType.php -------------------------------------------------------------------------------- /src/Trading/Types/OfferArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/OfferArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/OfferType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/OfferType.php -------------------------------------------------------------------------------- /src/Trading/Types/OrderArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/OrderArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/OrderIDArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/OrderIDArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/OrderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/OrderType.php -------------------------------------------------------------------------------- /src/Trading/Types/PaginationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PaginationType.php -------------------------------------------------------------------------------- /src/Trading/Types/PaymentDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PaymentDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/PickupDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PickupDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/PickupOptionsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PickupOptionsType.php -------------------------------------------------------------------------------- /src/Trading/Types/PictureDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PictureDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/PictureURLsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PictureURLsType.php -------------------------------------------------------------------------------- /src/Trading/Types/PicturesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PicturesType.php -------------------------------------------------------------------------------- /src/Trading/Types/ProductDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ProductDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/ProductFamilyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ProductFamilyType.php -------------------------------------------------------------------------------- /src/Trading/Types/ProductInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ProductInfoType.php -------------------------------------------------------------------------------- /src/Trading/Types/ProductSearchType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ProductSearchType.php -------------------------------------------------------------------------------- /src/Trading/Types/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ProductType.php -------------------------------------------------------------------------------- /src/Trading/Types/PromotedItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PromotedItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/PromotionRuleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/PromotionRuleType.php -------------------------------------------------------------------------------- /src/Trading/Types/QuantityInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/QuantityInfoType.php -------------------------------------------------------------------------------- /src/Trading/Types/QuantityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/QuantityType.php -------------------------------------------------------------------------------- /src/Trading/Types/RecommendationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RecommendationType.php -------------------------------------------------------------------------------- /src/Trading/Types/RefundArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RefundArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/RefundDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RefundDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/RefundLineType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RefundLineType.php -------------------------------------------------------------------------------- /src/Trading/Types/RefundType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RefundType.php -------------------------------------------------------------------------------- /src/Trading/Types/RegionDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RegionDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/RemindersType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/RemindersType.php -------------------------------------------------------------------------------- /src/Trading/Types/ReturnPolicyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ReturnPolicyType.php -------------------------------------------------------------------------------- /src/Trading/Types/ReviewDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ReviewDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/ReviewType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ReviewType.php -------------------------------------------------------------------------------- /src/Trading/Types/ReviseStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ReviseStatusType.php -------------------------------------------------------------------------------- /src/Trading/Types/SKUArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SKUArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/SalesTaxType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SalesTaxType.php -------------------------------------------------------------------------------- /src/Trading/Types/ScheduleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ScheduleType.php -------------------------------------------------------------------------------- /src/Trading/Types/SchedulingInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SchedulingInfoType.php -------------------------------------------------------------------------------- /src/Trading/Types/SearchDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SearchDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/SellerDiscountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SellerDiscountType.php -------------------------------------------------------------------------------- /src/Trading/Types/SellerPaymentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SellerPaymentType.php -------------------------------------------------------------------------------- /src/Trading/Types/SellerProfilesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SellerProfilesType.php -------------------------------------------------------------------------------- /src/Trading/Types/SellerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SellerType.php -------------------------------------------------------------------------------- /src/Trading/Types/SellingStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SellingStatusType.php -------------------------------------------------------------------------------- /src/Trading/Types/SellingSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SellingSummaryType.php -------------------------------------------------------------------------------- /src/Trading/Types/ShipmentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ShipmentType.php -------------------------------------------------------------------------------- /src/Trading/Types/SiteDefaultsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SiteDefaultsType.php -------------------------------------------------------------------------------- /src/Trading/Types/SiteDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SiteDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/SiteLocationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SiteLocationType.php -------------------------------------------------------------------------------- /src/Trading/Types/StoreColorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StoreColorType.php -------------------------------------------------------------------------------- /src/Trading/Types/StoreFontType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StoreFontType.php -------------------------------------------------------------------------------- /src/Trading/Types/StoreLogoArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StoreLogoArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/StoreLogoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StoreLogoType.php -------------------------------------------------------------------------------- /src/Trading/Types/StoreThemeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StoreThemeType.php -------------------------------------------------------------------------------- /src/Trading/Types/StoreType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StoreType.php -------------------------------------------------------------------------------- /src/Trading/Types/StorefrontType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/StorefrontType.php -------------------------------------------------------------------------------- /src/Trading/Types/SubscriptionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/SubscriptionType.php -------------------------------------------------------------------------------- /src/Trading/Types/TaxDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TaxDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/TaxIdentifierType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TaxIdentifierType.php -------------------------------------------------------------------------------- /src/Trading/Types/TaxTableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TaxTableType.php -------------------------------------------------------------------------------- /src/Trading/Types/TaxesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TaxesType.php -------------------------------------------------------------------------------- /src/Trading/Types/ThemeGroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ThemeGroupType.php -------------------------------------------------------------------------------- /src/Trading/Types/TimeRangeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TimeRangeType.php -------------------------------------------------------------------------------- /src/Trading/Types/TokenStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TokenStatusType.php -------------------------------------------------------------------------------- /src/Trading/Types/TransactionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/TransactionType.php -------------------------------------------------------------------------------- /src/Trading/Types/URLDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/URLDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/UnitInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/UnitInfoType.php -------------------------------------------------------------------------------- /src/Trading/Types/UnpaidItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/UnpaidItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/UserIDArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/UserIDArrayType.php -------------------------------------------------------------------------------- /src/Trading/Types/UserIdPasswordType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/UserIdPasswordType.php -------------------------------------------------------------------------------- /src/Trading/Types/UserIdentityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/UserIdentityType.php -------------------------------------------------------------------------------- /src/Trading/Types/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/UserType.php -------------------------------------------------------------------------------- /src/Trading/Types/VATDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VATDetailsType.php -------------------------------------------------------------------------------- /src/Trading/Types/VATRateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VATRateType.php -------------------------------------------------------------------------------- /src/Trading/Types/ValType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/ValType.php -------------------------------------------------------------------------------- /src/Trading/Types/VariationKeyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VariationKeyType.php -------------------------------------------------------------------------------- /src/Trading/Types/VariationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VariationType.php -------------------------------------------------------------------------------- /src/Trading/Types/VariationsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VariationsType.php -------------------------------------------------------------------------------- /src/Trading/Types/VeROReportItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VeROReportItemType.php -------------------------------------------------------------------------------- /src/Trading/Types/VeROSiteDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/VeROSiteDetailType.php -------------------------------------------------------------------------------- /src/Trading/Types/XSLFileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Trading/Types/XSLFileType.php -------------------------------------------------------------------------------- /src/Types/Base64BinaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/Base64BinaryType.php -------------------------------------------------------------------------------- /src/Types/BaseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/BaseType.php -------------------------------------------------------------------------------- /src/Types/BooleanType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/BooleanType.php -------------------------------------------------------------------------------- /src/Types/DecimalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/DecimalType.php -------------------------------------------------------------------------------- /src/Types/DoubleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/DoubleType.php -------------------------------------------------------------------------------- /src/Types/IntegerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/IntegerType.php -------------------------------------------------------------------------------- /src/Types/RepeatableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/RepeatableType.php -------------------------------------------------------------------------------- /src/Types/StringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/StringType.php -------------------------------------------------------------------------------- /src/Types/TokenType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/TokenType.php -------------------------------------------------------------------------------- /src/Types/URIType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/Types/URIType.php -------------------------------------------------------------------------------- /src/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/UriResolver.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenMorel/ebay-sdk-php/HEAD/src/functions.php --------------------------------------------------------------------------------