├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── composer.json └── lib └── PayPal ├── CoreComponentTypes ├── BasicAmountType.php └── MeasureType.php ├── EBLBaseComponents ├── APICredentialsType.php ├── AbstractRequestType.php ├── AbstractResponseType.php ├── ActivationDetailsType.php ├── AdditionalFeeType.php ├── AddressType.php ├── AirlineItineraryType.php ├── AuctionInfoType.php ├── AuthorizationInfoType.php ├── AuthorizationRequestType.php ├── AuthorizationResponseType.php ├── BAUpdateResponseDetailsType.php ├── BMLOfferInfoType.php ├── BankAccountDetailsType.php ├── BillOutstandingAmountRequestDetailsType.php ├── BillOutstandingAmountResponseDetailsType.php ├── BillingAgreementDetailsType.php ├── BillingApprovalDetailsType.php ├── BillingPeriodDetailsType.php ├── BillingPeriodDetailsType_Update.php ├── BusinessInfoType.php ├── BusinessOwnerInfoType.php ├── ButtonSearchResultType.php ├── BuyerDetailType.php ├── BuyerDetailsType.php ├── CoupledBucketsType.php ├── CoupledPaymentInfoType.php ├── CreateMobilePaymentRequestDetailsType.php ├── CreateRecurringPaymentsProfileRequestDetailsType.php ├── CreateRecurringPaymentsProfileResponseDetailsType.php ├── CreditCardDetailsType.php ├── CreditCardNumberTypeType.php ├── DeviceDetailsType.php ├── DiscountInfoType.php ├── DiscountType.php ├── DisplayControlDetailsType.php ├── DoCaptureResponseDetailsType.php ├── DoDirectPaymentRequestDetailsType.php ├── DoExpressCheckoutPaymentRequestDetailsType.php ├── DoExpressCheckoutPaymentResponseDetailsType.php ├── DoMobileCheckoutPaymentResponseDetailsType.php ├── DoNonReferencedCreditRequestDetailsType.php ├── DoNonReferencedCreditResponseDetailsType.php ├── DoReferenceTransactionRequestDetailsType.php ├── DoReferenceTransactionResponseDetailsType.php ├── EbayItemPaymentDetailsItemType.php ├── EnhancedDataType.php ├── EnterBoardingRequestDetailsType.php ├── ErrorParameterType.php ├── ErrorType.php ├── ExecuteCheckoutOperationsRequestDetailsType.php ├── ExecuteCheckoutOperationsResponseDetailsType.php ├── ExternalPartnerTrackingDetailsType.php ├── ExternalRememberMeOptInDetailsType.php ├── ExternalRememberMeOwnerDetailsType.php ├── ExternalRememberMeStatusDetailsType.php ├── FMFDetailsType.php ├── FlightDetailsType.php ├── FlowControlDetailsType.php ├── FundingSourceDetailsType.php ├── GetAccessPermissionDetailsResponseDetailsType.php ├── GetAuthDetailsResponseDetailsType.php ├── GetBillingAgreementCustomerDetailsResponseDetailsType.php ├── GetBoardingDetailsResponseDetailsType.php ├── GetExpressCheckoutDetailsResponseDetailsType.php ├── GetIncentiveEvaluationRequestDetailsType.php ├── GetIncentiveEvaluationResponseDetailsType.php ├── GetMobileStatusRequestDetailsType.php ├── GetRecurringPaymentsProfileDetailsResponseDetailsType.php ├── IdentificationInfoType.php ├── IdentityTokenInfoType.php ├── IncentiveAppliedDetailsType.php ├── IncentiveAppliedToType.php ├── IncentiveApplyIndicationType.php ├── IncentiveBucketType.php ├── IncentiveDetailType.php ├── IncentiveDetailsType.php ├── IncentiveInfoType.php ├── IncentiveItemType.php ├── IncentiveRequestDetailsType.php ├── InfoSharingDirectivesType.php ├── InstrumentDetailsType.php ├── InvoiceItemType.php ├── ItemTrackingDetailsType.php ├── ManageRecurringPaymentsProfileStatusRequestDetailsType.php ├── ManageRecurringPaymentsProfileStatusResponseDetailsType.php ├── MerchantDataType.php ├── MerchantPullInfoType.php ├── MerchantPullPaymentResponseType.php ├── MerchantPullPaymentType.php ├── MerchantStoreDetailsType.php ├── MobileIDInfoType.php ├── OfferCouponInfoType.php ├── OfferDetailsType.php ├── OptionTrackingDetailsType.php ├── OptionType.php ├── OrderDetailsType.php ├── OtherPaymentMethodDetailsType.php ├── PayeeInfoType.php ├── PayerInfoType.php ├── PaymentDetailsItemType.php ├── PaymentDetailsType.php ├── PaymentDirectivesType.php ├── PaymentInfoType.php ├── PaymentItemInfoType.php ├── PaymentItemType.php ├── PaymentRequestInfoType.php ├── PaymentTransactionSearchResultType.php ├── PaymentTransactionType.php ├── PersonNameType.php ├── PhoneNumberType.php ├── ReceiverInfoType.php ├── RecurringPaymentsProfileDetailsType.php ├── RecurringPaymentsSummaryType.php ├── ReferenceCreditCardDetailsType.php ├── RefreshTokenStatusDetailsType.php ├── RefundInfoType.php ├── RememberMeIDInfoType.php ├── ReverseTransactionRequestDetailsType.php ├── ReverseTransactionResponseDetailsType.php ├── RiskFilterDetailsType.php ├── RiskFilterListType.php ├── ScheduleDetailsType.php ├── SellerDetailsType.php ├── SenderDetailsType.php ├── SetAccessPermissionsRequestDetailsType.php ├── SetAuthFlowParamRequestDetailsType.php ├── SetCustomerBillingAgreementRequestDetailsType.php ├── SetDataRequestType.php ├── SetDataResponseType.php ├── SetExpressCheckoutRequestDetailsType.php ├── SetMobileCheckoutRequestDetailsType.php ├── ShippingOptionType.php ├── SubscriptionInfoType.php ├── SubscriptionTermsType.php ├── TaxIdDetailsType.php ├── ThreeDSecureInfoType.php ├── ThreeDSecureRequestType.php ├── ThreeDSecureResponseType.php ├── TupleType.php ├── UATPDetailsType.php ├── UpdateRecurringPaymentsProfileRequestDetailsType.php ├── UpdateRecurringPaymentsProfileResponseDetailsType.php ├── UserSelectedOptionType.php └── WalletItemsType.php ├── EnhancedDataTypes ├── EnhancedCancelRecoupRequestDetailsType.php ├── EnhancedCheckoutDataType.php ├── EnhancedCompleteRecoupRequestDetailsType.php ├── EnhancedCompleteRecoupResponseDetailsType.php ├── EnhancedInitiateRecoupRequestDetailsType.php ├── EnhancedItemDataType.php ├── EnhancedPayerInfoType.php ├── EnhancedPaymentDataType.php └── EnhancedPaymentInfoType.php ├── PayPalAPI ├── AddressVerifyReq.php ├── AddressVerifyRequestType.php ├── AddressVerifyResponseType.php ├── BAUpdateRequestType.php ├── BAUpdateResponseType.php ├── BMButtonSearchReq.php ├── BMButtonSearchRequestType.php ├── BMButtonSearchResponseType.php ├── BMCreateButtonReq.php ├── BMCreateButtonRequestType.php ├── BMCreateButtonResponseType.php ├── BMGetButtonDetailsReq.php ├── BMGetButtonDetailsRequestType.php ├── BMGetButtonDetailsResponseType.php ├── BMGetInventoryReq.php ├── BMGetInventoryRequestType.php ├── BMGetInventoryResponseType.php ├── BMManageButtonStatusReq.php ├── BMManageButtonStatusRequestType.php ├── BMManageButtonStatusResponseType.php ├── BMSetInventoryReq.php ├── BMSetInventoryRequestType.php ├── BMSetInventoryResponseType.php ├── BMUpdateButtonReq.php ├── BMUpdateButtonRequestType.php ├── BMUpdateButtonResponseType.php ├── BillAgreementUpdateReq.php ├── BillOutstandingAmountReq.php ├── BillOutstandingAmountRequestType.php ├── BillOutstandingAmountResponseType.php ├── BillUserReq.php ├── BillUserRequestType.php ├── BillUserResponseType.php ├── CancelRecoupReq.php ├── CancelRecoupRequestType.php ├── CancelRecoupResponseType.php ├── CompleteRecoupReq.php ├── CompleteRecoupRequestType.php ├── CompleteRecoupResponseType.php ├── CreateBillingAgreementReq.php ├── CreateBillingAgreementRequestType.php ├── CreateBillingAgreementResponseType.php ├── CreateMobilePaymentReq.php ├── CreateMobilePaymentRequestType.php ├── CreateMobilePaymentResponseType.php ├── CreateRecurringPaymentsProfileReq.php ├── CreateRecurringPaymentsProfileRequestType.php ├── CreateRecurringPaymentsProfileResponseType.php ├── DoAuthorizationReq.php ├── DoAuthorizationRequestType.php ├── DoAuthorizationResponseType.php ├── DoCancelReq.php ├── DoCancelRequestType.php ├── DoCancelResponseType.php ├── DoCaptureReq.php ├── DoCaptureRequestType.php ├── DoCaptureResponseType.php ├── DoDirectPaymentReq.php ├── DoDirectPaymentRequestType.php ├── DoDirectPaymentResponseType.php ├── DoExpressCheckoutPaymentReq.php ├── DoExpressCheckoutPaymentRequestType.php ├── DoExpressCheckoutPaymentResponseType.php ├── DoMobileCheckoutPaymentReq.php ├── DoMobileCheckoutPaymentRequestType.php ├── DoMobileCheckoutPaymentResponseType.php ├── DoNonReferencedCreditReq.php ├── DoNonReferencedCreditRequestType.php ├── DoNonReferencedCreditResponseType.php ├── DoReauthorizationReq.php ├── DoReauthorizationRequestType.php ├── DoReauthorizationResponseType.php ├── DoReferenceTransactionReq.php ├── DoReferenceTransactionRequestType.php ├── DoReferenceTransactionResponseType.php ├── DoUATPAuthorizationReq.php ├── DoUATPAuthorizationRequestType.php ├── DoUATPAuthorizationResponseType.php ├── DoUATPExpressCheckoutPaymentReq.php ├── DoUATPExpressCheckoutPaymentRequestType.php ├── DoUATPExpressCheckoutPaymentResponseType.php ├── DoVoidReq.php ├── DoVoidRequestType.php ├── DoVoidResponseType.php ├── EnterBoardingReq.php ├── EnterBoardingRequestType.php ├── EnterBoardingResponseType.php ├── ExecuteCheckoutOperationsReq.php ├── ExecuteCheckoutOperationsRequestType.php ├── ExecuteCheckoutOperationsResponseType.php ├── ExternalRememberMeOptOutReq.php ├── ExternalRememberMeOptOutRequestType.php ├── ExternalRememberMeOptOutResponseType.php ├── GetAccessPermissionDetailsReq.php ├── GetAccessPermissionDetailsRequestType.php ├── GetAccessPermissionDetailsResponseType.php ├── GetAuthDetailsReq.php ├── GetAuthDetailsRequestType.php ├── GetAuthDetailsResponseType.php ├── GetBalanceReq.php ├── GetBalanceRequestType.php ├── GetBalanceResponseType.php ├── GetBillingAgreementCustomerDetailsReq.php ├── GetBillingAgreementCustomerDetailsRequestType.php ├── GetBillingAgreementCustomerDetailsResponseType.php ├── GetBoardingDetailsReq.php ├── GetBoardingDetailsRequestType.php ├── GetBoardingDetailsResponseType.php ├── GetExpressCheckoutDetailsReq.php ├── GetExpressCheckoutDetailsRequestType.php ├── GetExpressCheckoutDetailsResponseType.php ├── GetIncentiveEvaluationReq.php ├── GetIncentiveEvaluationRequestType.php ├── GetIncentiveEvaluationResponseType.php ├── GetMobileStatusReq.php ├── GetMobileStatusRequestType.php ├── GetMobileStatusResponseType.php ├── GetPalDetailsReq.php ├── GetPalDetailsRequestType.php ├── GetPalDetailsResponseType.php ├── GetRecurringPaymentsProfileDetailsReq.php ├── GetRecurringPaymentsProfileDetailsRequestType.php ├── GetRecurringPaymentsProfileDetailsResponseType.php ├── GetTransactionDetailsReq.php ├── GetTransactionDetailsRequestType.php ├── GetTransactionDetailsResponseType.php ├── InitiateRecoupReq.php ├── InitiateRecoupRequestType.php ├── InitiateRecoupResponseType.php ├── InstallmentDetailsType.php ├── ManagePendingTransactionStatusReq.php ├── ManagePendingTransactionStatusRequestType.php ├── ManagePendingTransactionStatusResponseType.php ├── ManageRecurringPaymentsProfileStatusReq.php ├── ManageRecurringPaymentsProfileStatusRequestType.php ├── ManageRecurringPaymentsProfileStatusResponseType.php ├── MassPayReq.php ├── MassPayRequestItemType.php ├── MassPayRequestType.php ├── MassPayResponseType.php ├── OptionDetailsType.php ├── OptionSelectionDetailsType.php ├── RefundTransactionReq.php ├── RefundTransactionRequestType.php ├── RefundTransactionResponseType.php ├── ReverseTransactionReq.php ├── ReverseTransactionRequestType.php ├── ReverseTransactionResponseType.php ├── SetAccessPermissionsReq.php ├── SetAccessPermissionsRequestType.php ├── SetAccessPermissionsResponseType.php ├── SetAuthFlowParamReq.php ├── SetAuthFlowParamRequestType.php ├── SetAuthFlowParamResponseType.php ├── SetCustomerBillingAgreementReq.php ├── SetCustomerBillingAgreementRequestType.php ├── SetCustomerBillingAgreementResponseType.php ├── SetExpressCheckoutReq.php ├── SetExpressCheckoutRequestType.php ├── SetExpressCheckoutResponseType.php ├── SetMobileCheckoutReq.php ├── SetMobileCheckoutRequestType.php ├── SetMobileCheckoutResponseType.php ├── TransactionSearchReq.php ├── TransactionSearchRequestType.php ├── TransactionSearchResponseType.php ├── UpdateAccessPermissionsReq.php ├── UpdateAccessPermissionsRequestType.php ├── UpdateAccessPermissionsResponseType.php ├── UpdateAuthorizationReq.php ├── UpdateAuthorizationRequestType.php ├── UpdateAuthorizationResponseType.php ├── UpdateRecurringPaymentsProfileReq.php ├── UpdateRecurringPaymentsProfileRequestType.php └── UpdateRecurringPaymentsProfileResponseType.php └── Service └── PayPalAPIInterfaceServiceService.php /.gitattributes: -------------------------------------------------------------------------------- 1 | samples/ export-ignore 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /lib/PayPal/CoreComponentTypes/BasicAmountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/CoreComponentTypes/BasicAmountType.php -------------------------------------------------------------------------------- /lib/PayPal/CoreComponentTypes/MeasureType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/CoreComponentTypes/MeasureType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/APICredentialsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/APICredentialsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AbstractRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AbstractRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AbstractResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AbstractResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ActivationDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ActivationDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AdditionalFeeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AdditionalFeeType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AddressType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AirlineItineraryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AirlineItineraryType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AuctionInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AuctionInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AuthorizationInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AuthorizationInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AuthorizationRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AuthorizationRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/AuthorizationResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/AuthorizationResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BAUpdateResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BAUpdateResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BMLOfferInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BMLOfferInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BankAccountDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BankAccountDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BillOutstandingAmountRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BillOutstandingAmountRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BillOutstandingAmountResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BillOutstandingAmountResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BillingAgreementDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BillingAgreementDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BillingApprovalDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BillingApprovalDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType_Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType_Update.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BusinessInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BusinessInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BusinessOwnerInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BusinessOwnerInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ButtonSearchResultType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ButtonSearchResultType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BuyerDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BuyerDetailType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/BuyerDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/BuyerDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CoupledBucketsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CoupledBucketsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CoupledPaymentInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CoupledPaymentInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CreateMobilePaymentRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CreateMobilePaymentRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CreditCardDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CreditCardDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/CreditCardNumberTypeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/CreditCardNumberTypeType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DeviceDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DeviceDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DiscountInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DiscountInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DiscountType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DiscountType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DisplayControlDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DisplayControlDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoCaptureResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoCaptureResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoDirectPaymentRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoDirectPaymentRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoMobileCheckoutPaymentResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoMobileCheckoutPaymentResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoNonReferencedCreditRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoNonReferencedCreditRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoNonReferencedCreditResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoNonReferencedCreditResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoReferenceTransactionRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoReferenceTransactionRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/DoReferenceTransactionResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/DoReferenceTransactionResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/EbayItemPaymentDetailsItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/EbayItemPaymentDetailsItemType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/EnhancedDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/EnhancedDataType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/EnterBoardingRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/EnterBoardingRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ErrorParameterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ErrorParameterType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ErrorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ErrorType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ExternalPartnerTrackingDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ExternalPartnerTrackingDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ExternalRememberMeOptInDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ExternalRememberMeOptInDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ExternalRememberMeOwnerDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ExternalRememberMeOwnerDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ExternalRememberMeStatusDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ExternalRememberMeStatusDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/FMFDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/FMFDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/FlightDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/FlightDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/FlowControlDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/FlowControlDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/FundingSourceDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/FundingSourceDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetAccessPermissionDetailsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetAccessPermissionDetailsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetAuthDetailsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetAuthDetailsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetBillingAgreementCustomerDetailsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetBillingAgreementCustomerDetailsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetBoardingDetailsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetBoardingDetailsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetExpressCheckoutDetailsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetExpressCheckoutDetailsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetMobileStatusRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetMobileStatusRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/GetRecurringPaymentsProfileDetailsResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/GetRecurringPaymentsProfileDetailsResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IdentificationInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IdentificationInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IdentityTokenInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IdentityTokenInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveAppliedDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveAppliedDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveAppliedToType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveAppliedToType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveApplyIndicationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveApplyIndicationType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveBucketType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveBucketType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveDetailType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveDetailType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveItemType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/IncentiveRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/IncentiveRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/InfoSharingDirectivesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/InfoSharingDirectivesType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/InstrumentDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/InstrumentDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/InvoiceItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/InvoiceItemType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ItemTrackingDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ItemTrackingDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/MerchantDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/MerchantDataType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/MerchantPullInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/MerchantPullInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/MerchantPullPaymentResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/MerchantPullPaymentResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/MerchantPullPaymentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/MerchantPullPaymentType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/MerchantStoreDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/MerchantStoreDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/MobileIDInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/MobileIDInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/OfferCouponInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/OfferCouponInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/OfferDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/OfferDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/OptionTrackingDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/OptionTrackingDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/OptionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/OptionType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/OrderDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/OrderDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/OtherPaymentMethodDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/OtherPaymentMethodDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PayeeInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PayeeInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PayerInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PayerInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentDetailsItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentDetailsItemType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentDirectivesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentDirectivesType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentItemInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentItemInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentItemType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentRequestInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentRequestInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentTransactionSearchResultType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentTransactionSearchResultType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PaymentTransactionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PaymentTransactionType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PersonNameType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PersonNameType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/PhoneNumberType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/PhoneNumberType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ReceiverInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ReceiverInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RecurringPaymentsProfileDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RecurringPaymentsProfileDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RecurringPaymentsSummaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RecurringPaymentsSummaryType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ReferenceCreditCardDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ReferenceCreditCardDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RefreshTokenStatusDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RefreshTokenStatusDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RefundInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RefundInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RememberMeIDInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RememberMeIDInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ReverseTransactionRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ReverseTransactionRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ReverseTransactionResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ReverseTransactionResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RiskFilterDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RiskFilterDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/RiskFilterListType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/RiskFilterListType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ScheduleDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ScheduleDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SellerDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SellerDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SenderDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SenderDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetAccessPermissionsRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetAccessPermissionsRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetAuthFlowParamRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetAuthFlowParamRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetCustomerBillingAgreementRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetCustomerBillingAgreementRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetDataRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetDataRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetDataResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetDataResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetExpressCheckoutRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetExpressCheckoutRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SetMobileCheckoutRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SetMobileCheckoutRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ShippingOptionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ShippingOptionType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SubscriptionInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SubscriptionInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/SubscriptionTermsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/SubscriptionTermsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/TaxIdDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/TaxIdDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ThreeDSecureInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ThreeDSecureInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ThreeDSecureRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ThreeDSecureRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/ThreeDSecureResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/ThreeDSecureResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/TupleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/TupleType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/UATPDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/UATPDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/UserSelectedOptionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/UserSelectedOptionType.php -------------------------------------------------------------------------------- /lib/PayPal/EBLBaseComponents/WalletItemsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EBLBaseComponents/WalletItemsType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedCancelRecoupRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedCancelRecoupRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedCheckoutDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedCheckoutDataType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupResponseDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupResponseDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedInitiateRecoupRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedInitiateRecoupRequestDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedItemDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedItemDataType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedPayerInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedPayerInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedPaymentDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedPaymentDataType.php -------------------------------------------------------------------------------- /lib/PayPal/EnhancedDataTypes/EnhancedPaymentInfoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/EnhancedDataTypes/EnhancedPaymentInfoType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/AddressVerifyReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/AddressVerifyReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/AddressVerifyRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/AddressVerifyRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/AddressVerifyResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/AddressVerifyResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BAUpdateRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BAUpdateRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BAUpdateResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BAUpdateResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMButtonSearchReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMButtonSearchReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMButtonSearchRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMButtonSearchRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMButtonSearchResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMButtonSearchResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMCreateButtonReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMCreateButtonReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMCreateButtonRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMCreateButtonRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMCreateButtonResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMCreateButtonResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMGetButtonDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMGetButtonDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMGetButtonDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMGetButtonDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMGetButtonDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMGetButtonDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMGetInventoryReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMGetInventoryReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMGetInventoryRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMGetInventoryRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMGetInventoryResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMGetInventoryResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMManageButtonStatusReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMManageButtonStatusReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMManageButtonStatusRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMManageButtonStatusRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMManageButtonStatusResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMManageButtonStatusResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMSetInventoryReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMSetInventoryReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMSetInventoryRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMSetInventoryRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMSetInventoryResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMSetInventoryResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMUpdateButtonReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMUpdateButtonReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMUpdateButtonRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMUpdateButtonRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BMUpdateButtonResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BMUpdateButtonResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillAgreementUpdateReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillAgreementUpdateReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillOutstandingAmountReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillOutstandingAmountReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillOutstandingAmountRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillOutstandingAmountRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillOutstandingAmountResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillOutstandingAmountResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillUserReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillUserReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillUserRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillUserRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/BillUserResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/BillUserResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CancelRecoupReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CancelRecoupReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CancelRecoupRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CancelRecoupRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CancelRecoupResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CancelRecoupResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CompleteRecoupReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CompleteRecoupReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CompleteRecoupRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CompleteRecoupRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CompleteRecoupResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CompleteRecoupResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateBillingAgreementReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateBillingAgreementReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateBillingAgreementRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateBillingAgreementRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateBillingAgreementResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateBillingAgreementResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateMobilePaymentReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateMobilePaymentReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateMobilePaymentRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateMobilePaymentRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateMobilePaymentResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateMobilePaymentResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoAuthorizationReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoAuthorizationReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoAuthorizationRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoAuthorizationRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoAuthorizationResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoAuthorizationResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoCancelReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoCancelReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoCancelRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoCancelRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoCancelResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoCancelResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoCaptureReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoCaptureReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoCaptureRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoCaptureRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoCaptureResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoCaptureResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoDirectPaymentReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoDirectPaymentReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoDirectPaymentRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoDirectPaymentRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoDirectPaymentResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoDirectPaymentResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoNonReferencedCreditReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoNonReferencedCreditReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoNonReferencedCreditRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoNonReferencedCreditRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoNonReferencedCreditResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoNonReferencedCreditResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoReauthorizationReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoReauthorizationReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoReauthorizationRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoReauthorizationRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoReauthorizationResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoReauthorizationResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoReferenceTransactionReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoReferenceTransactionReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoReferenceTransactionRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoReferenceTransactionRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoReferenceTransactionResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoReferenceTransactionResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoUATPAuthorizationReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoUATPAuthorizationReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoUATPAuthorizationRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoUATPAuthorizationRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoUATPAuthorizationResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoUATPAuthorizationResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoVoidReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoVoidReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoVoidRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoVoidRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/DoVoidResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/DoVoidResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/EnterBoardingReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/EnterBoardingReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/EnterBoardingRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/EnterBoardingRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/EnterBoardingResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/EnterBoardingResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ExternalRememberMeOptOutReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ExternalRememberMeOptOutRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ExternalRememberMeOptOutResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetAccessPermissionDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetAccessPermissionDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetAccessPermissionDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetAuthDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetAuthDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetAuthDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetAuthDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetAuthDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetAuthDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBalanceReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBalanceReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBalanceRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBalanceRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBalanceResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBalanceResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBoardingDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBoardingDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBoardingDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBoardingDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetBoardingDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetBoardingDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetIncentiveEvaluationReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetIncentiveEvaluationReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetIncentiveEvaluationRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetIncentiveEvaluationRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetIncentiveEvaluationResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetIncentiveEvaluationResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetMobileStatusReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetMobileStatusReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetMobileStatusRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetMobileStatusRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetMobileStatusResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetMobileStatusResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetPalDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetPalDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetPalDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetPalDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetPalDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetPalDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetTransactionDetailsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetTransactionDetailsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetTransactionDetailsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetTransactionDetailsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/GetTransactionDetailsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/GetTransactionDetailsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/InitiateRecoupReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/InitiateRecoupReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/InitiateRecoupRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/InitiateRecoupRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/InitiateRecoupResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/InitiateRecoupResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/InstallmentDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/InstallmentDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ManagePendingTransactionStatusReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ManagePendingTransactionStatusRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ManagePendingTransactionStatusResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/MassPayReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/MassPayReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/MassPayRequestItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/MassPayRequestItemType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/MassPayRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/MassPayRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/MassPayResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/MassPayResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/OptionDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/OptionDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/OptionSelectionDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/OptionSelectionDetailsType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/RefundTransactionReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/RefundTransactionReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/RefundTransactionRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/RefundTransactionRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/RefundTransactionResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/RefundTransactionResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ReverseTransactionReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ReverseTransactionReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ReverseTransactionRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ReverseTransactionRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/ReverseTransactionResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/ReverseTransactionResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetAccessPermissionsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetAccessPermissionsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetAccessPermissionsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetAccessPermissionsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetAccessPermissionsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetAccessPermissionsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetAuthFlowParamReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetAuthFlowParamReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetAuthFlowParamRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetAuthFlowParamRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetAuthFlowParamResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetAuthFlowParamResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetCustomerBillingAgreementReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetCustomerBillingAgreementRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetCustomerBillingAgreementResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetExpressCheckoutReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetExpressCheckoutReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetExpressCheckoutRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetExpressCheckoutRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetExpressCheckoutResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetExpressCheckoutResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetMobileCheckoutReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetMobileCheckoutReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetMobileCheckoutRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetMobileCheckoutRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/SetMobileCheckoutResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/SetMobileCheckoutResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/TransactionSearchReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/TransactionSearchReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/TransactionSearchRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/TransactionSearchRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/TransactionSearchResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/TransactionSearchResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateAccessPermissionsReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateAccessPermissionsReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateAccessPermissionsRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateAccessPermissionsRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateAccessPermissionsResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateAccessPermissionsResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateAuthorizationReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateAuthorizationReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateAuthorizationRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateAuthorizationRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateAuthorizationResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateAuthorizationResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileReq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileReq.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileRequestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileRequestType.php -------------------------------------------------------------------------------- /lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileResponseType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileResponseType.php -------------------------------------------------------------------------------- /lib/PayPal/Service/PayPalAPIInterfaceServiceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/merchant-sdk-php/HEAD/lib/PayPal/Service/PayPalAPIInterfaceServiceService.php --------------------------------------------------------------------------------