├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── samples ├── DynamicUUID │ ├── decode.php │ ├── encode.php │ └── validate.php ├── config.sample.php ├── currency │ └── convertAmount.php ├── directDebit │ ├── add.php │ ├── delete.php │ ├── get.php │ ├── info.php │ ├── mandate │ │ ├── add.php │ │ ├── addTransaction.php │ │ └── get.php │ ├── recurring │ │ ├── add.php │ │ └── get.php │ └── update.php ├── exchange.php ├── instore │ ├── confirmPayment.php │ ├── getAllTerminals.php │ ├── getReceipt.php │ ├── payment.php │ ├── simple-transaction.php │ └── status.php ├── merchant │ ├── addTradeName.php │ ├── deleteTradeName.php │ ├── getTradeNames.php │ └── info.php ├── refund │ └── get.php ├── return.php ├── service │ ├── getAll.php │ └── getPaylinkUrl.php ├── transaction │ ├── addRecurring.php │ ├── byRecurringId.php │ ├── capture.php │ ├── details.php │ ├── get.php │ ├── paymentMethods.php │ ├── qrPayment.php │ ├── refund.php │ ├── start-minimum.php │ ├── start.php │ ├── status.php │ └── void.php ├── validate │ └── isPayServerIp.php └── voucher │ ├── activate.php │ ├── balance.php │ └── charge.php ├── src ├── Api │ ├── Api.php │ ├── Currency │ │ ├── ConvertAmount.php │ │ ├── Currency.php │ │ └── GetAll.php │ ├── DirectDebit │ │ ├── DebitAdd.php │ │ ├── DebitGet.php │ │ ├── Delete.php │ │ ├── DirectDebit.php │ │ ├── Info.php │ │ ├── MandateAdd.php │ │ ├── MandateDebit.php │ │ ├── MandateGet.php │ │ ├── RecurringAdd.php │ │ ├── RecurringGet.php │ │ └── Update.php │ ├── Instore │ │ ├── ConfirmPayment.php │ │ ├── GetAllTerminals.php │ │ ├── GetTransactionTicket.php │ │ ├── Instore.php │ │ ├── Payment.php │ │ └── Status.php │ ├── Merchant │ │ ├── AddTrademark.php │ │ ├── DeleteTrademark.php │ │ ├── Info.php │ │ └── Merchant.php │ ├── Payment │ │ ├── Authenticate.php │ │ ├── AuthenticateMethod.php │ │ ├── AuthenticationStatus.php │ │ ├── Authorize.php │ │ ├── EncryptionKeys.php │ │ └── Model │ │ │ ├── AbstractTransaction.php │ │ │ ├── Address.php │ │ │ ├── Auth.php │ │ │ ├── Authenticate.php │ │ │ ├── Authenticate │ │ │ ├── Transaction.php │ │ │ └── TransactionMethod.php │ │ │ ├── AuthenticateMethod.php │ │ │ ├── Authorize.php │ │ │ ├── Authorize │ │ │ └── Transaction.php │ │ │ ├── Browser.php │ │ │ ├── CSE.php │ │ │ ├── Card.php │ │ │ ├── Company.php │ │ │ ├── Customer.php │ │ │ ├── Invoice.php │ │ │ ├── Model.php │ │ │ ├── Order.php │ │ │ ├── Payment.php │ │ │ ├── Product.php │ │ │ └── Statistics.php │ ├── PaymentApi.php │ ├── Refund │ │ ├── Add.php │ │ ├── Info.php │ │ └── Refund.php │ ├── Service │ │ ├── GetAll.php │ │ ├── GetPayLinkUrl.php │ │ └── Service.php │ ├── Transaction │ │ ├── AddRecurring.php │ │ ├── Approve.php │ │ ├── ByRecurringId.php │ │ ├── Cancel.php │ │ ├── Capture.php │ │ ├── ConfirmExternalPayment.php │ │ ├── Decline.php │ │ ├── Details.php │ │ ├── GetService.php │ │ ├── Info.php │ │ ├── QRPayment.php │ │ ├── Refund.php │ │ ├── Start.php │ │ ├── Status.php │ │ ├── Transaction.php │ │ └── VoidTransaction.php │ ├── Validate │ │ ├── IsPayServerIp.php │ │ └── Validate.php │ └── Voucher │ │ ├── Activate.php │ │ ├── Balance.php │ │ ├── Charge.php │ │ └── Voucher.php ├── Config.php ├── Curl │ ├── CurlInterface.php │ └── Dummy.php ├── Currency.php ├── DirectDebit.php ├── DirectDebit │ ├── Mandate.php │ └── Recurring.php ├── DynamicUUID.php ├── Error │ ├── Api.php │ ├── Error.php │ ├── InvalidArgument.php │ ├── NotFound.php │ ├── Required.php │ └── Required │ │ ├── ApiToken.php │ │ └── ServiceId.php ├── Helper.php ├── Instore.php ├── Merchant.php ├── Payment.php ├── Paymentmethods.php ├── Refund.php ├── Result │ ├── DirectDebit │ │ ├── Add.php │ │ ├── Get.php │ │ ├── Mandate │ │ │ ├── Add.php │ │ │ ├── AddTransaction.php │ │ │ └── Get.php │ │ └── Recurring │ │ │ ├── Add.php │ │ │ └── Get.php │ ├── Instore │ │ ├── ConfirmPayment.php │ │ ├── Payment.php │ │ ├── Receipt.php │ │ ├── Status.php │ │ └── Terminals.php │ ├── Merchant │ │ └── Info.php │ ├── Payment │ │ ├── Authenticate.php │ │ ├── AuthenticateMethod.php │ │ ├── AuthenticationStatus.php │ │ ├── Authorize.php │ │ └── EncryptionKeys.php │ ├── Refund │ │ ├── Add.php │ │ └── Refund.php │ ├── Result.php │ ├── Transaction │ │ ├── AddRecurring.php │ │ ├── ByRecurringId.php │ │ ├── Cancel.php │ │ ├── ConfirmExternalPayment.php │ │ ├── Details.php │ │ ├── QRPayment.php │ │ ├── Refund.php │ │ ├── Start.php │ │ ├── Status.php │ │ ├── Transaction.php │ │ └── TransactionDetails.php │ └── Voucher │ │ └── Voucher.php ├── Service.php ├── StaticUUID.php ├── Transaction.php ├── Validate.php └── Voucher.php └── tests ├── ConfigTest.php ├── CurrencyTest.php ├── HelperTest.php ├── MerchantTest.php ├── PaymentmethodsTest.php ├── RefundTest.php ├── TransactionTest.php ├── ValidateTest.php └── dummyData ├── Merchant ├── addTrademark.json ├── addTrademarkError.json ├── deleteTrademark.json ├── deleteTrademarkError.json ├── info.json └── infoError.json ├── Refund ├── info.json ├── refund.json └── refundError.json ├── Transaction ├── Result │ ├── approve.json │ ├── capture.json │ ├── decline.json │ ├── refund.json │ ├── refundError.json │ ├── transactionPaid.json │ ├── transactionVerify.json │ └── void.json └── startOk.json ├── Validate ├── isPayServerIpNo.json └── isPayServerIpYes.json ├── currencies.json └── getService.json /.gitignore: -------------------------------------------------------------------------------- 1 | samples/config.php 2 | .idea/* 3 | vendor/ 4 | composer.lock -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/composer.json -------------------------------------------------------------------------------- /samples/DynamicUUID/decode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/DynamicUUID/decode.php -------------------------------------------------------------------------------- /samples/DynamicUUID/encode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/DynamicUUID/encode.php -------------------------------------------------------------------------------- /samples/DynamicUUID/validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/DynamicUUID/validate.php -------------------------------------------------------------------------------- /samples/config.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/config.sample.php -------------------------------------------------------------------------------- /samples/currency/convertAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/currency/convertAmount.php -------------------------------------------------------------------------------- /samples/directDebit/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/add.php -------------------------------------------------------------------------------- /samples/directDebit/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/delete.php -------------------------------------------------------------------------------- /samples/directDebit/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/get.php -------------------------------------------------------------------------------- /samples/directDebit/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/info.php -------------------------------------------------------------------------------- /samples/directDebit/mandate/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/mandate/add.php -------------------------------------------------------------------------------- /samples/directDebit/mandate/addTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/mandate/addTransaction.php -------------------------------------------------------------------------------- /samples/directDebit/mandate/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/mandate/get.php -------------------------------------------------------------------------------- /samples/directDebit/recurring/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/recurring/add.php -------------------------------------------------------------------------------- /samples/directDebit/recurring/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/recurring/get.php -------------------------------------------------------------------------------- /samples/directDebit/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/directDebit/update.php -------------------------------------------------------------------------------- /samples/exchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/exchange.php -------------------------------------------------------------------------------- /samples/instore/confirmPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/instore/confirmPayment.php -------------------------------------------------------------------------------- /samples/instore/getAllTerminals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/instore/getAllTerminals.php -------------------------------------------------------------------------------- /samples/instore/getReceipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/instore/getReceipt.php -------------------------------------------------------------------------------- /samples/instore/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/instore/payment.php -------------------------------------------------------------------------------- /samples/instore/simple-transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/instore/simple-transaction.php -------------------------------------------------------------------------------- /samples/instore/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/instore/status.php -------------------------------------------------------------------------------- /samples/merchant/addTradeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/merchant/addTradeName.php -------------------------------------------------------------------------------- /samples/merchant/deleteTradeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/merchant/deleteTradeName.php -------------------------------------------------------------------------------- /samples/merchant/getTradeNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/merchant/getTradeNames.php -------------------------------------------------------------------------------- /samples/merchant/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/merchant/info.php -------------------------------------------------------------------------------- /samples/refund/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/refund/get.php -------------------------------------------------------------------------------- /samples/return.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/return.php -------------------------------------------------------------------------------- /samples/service/getAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/service/getAll.php -------------------------------------------------------------------------------- /samples/service/getPaylinkUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/service/getPaylinkUrl.php -------------------------------------------------------------------------------- /samples/transaction/addRecurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/addRecurring.php -------------------------------------------------------------------------------- /samples/transaction/byRecurringId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/byRecurringId.php -------------------------------------------------------------------------------- /samples/transaction/capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/capture.php -------------------------------------------------------------------------------- /samples/transaction/details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/details.php -------------------------------------------------------------------------------- /samples/transaction/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/get.php -------------------------------------------------------------------------------- /samples/transaction/paymentMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/paymentMethods.php -------------------------------------------------------------------------------- /samples/transaction/qrPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/qrPayment.php -------------------------------------------------------------------------------- /samples/transaction/refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/refund.php -------------------------------------------------------------------------------- /samples/transaction/start-minimum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/start-minimum.php -------------------------------------------------------------------------------- /samples/transaction/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/start.php -------------------------------------------------------------------------------- /samples/transaction/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/status.php -------------------------------------------------------------------------------- /samples/transaction/void.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/transaction/void.php -------------------------------------------------------------------------------- /samples/validate/isPayServerIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/validate/isPayServerIp.php -------------------------------------------------------------------------------- /samples/voucher/activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/voucher/activate.php -------------------------------------------------------------------------------- /samples/voucher/balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/voucher/balance.php -------------------------------------------------------------------------------- /samples/voucher/charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/samples/voucher/charge.php -------------------------------------------------------------------------------- /src/Api/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Api.php -------------------------------------------------------------------------------- /src/Api/Currency/ConvertAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Currency/ConvertAmount.php -------------------------------------------------------------------------------- /src/Api/Currency/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Currency/Currency.php -------------------------------------------------------------------------------- /src/Api/Currency/GetAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Currency/GetAll.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/DebitAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/DebitAdd.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/DebitGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/DebitGet.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/Delete.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/DirectDebit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/DirectDebit.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/Info.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/MandateAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/MandateAdd.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/MandateDebit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/MandateDebit.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/MandateGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/MandateGet.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/RecurringAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/RecurringAdd.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/RecurringGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/RecurringGet.php -------------------------------------------------------------------------------- /src/Api/DirectDebit/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/DirectDebit/Update.php -------------------------------------------------------------------------------- /src/Api/Instore/ConfirmPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Instore/ConfirmPayment.php -------------------------------------------------------------------------------- /src/Api/Instore/GetAllTerminals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Instore/GetAllTerminals.php -------------------------------------------------------------------------------- /src/Api/Instore/GetTransactionTicket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Instore/GetTransactionTicket.php -------------------------------------------------------------------------------- /src/Api/Instore/Instore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Instore/Instore.php -------------------------------------------------------------------------------- /src/Api/Instore/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Instore/Payment.php -------------------------------------------------------------------------------- /src/Api/Instore/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Instore/Status.php -------------------------------------------------------------------------------- /src/Api/Merchant/AddTrademark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Merchant/AddTrademark.php -------------------------------------------------------------------------------- /src/Api/Merchant/DeleteTrademark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Merchant/DeleteTrademark.php -------------------------------------------------------------------------------- /src/Api/Merchant/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Merchant/Info.php -------------------------------------------------------------------------------- /src/Api/Merchant/Merchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Merchant/Merchant.php -------------------------------------------------------------------------------- /src/Api/Payment/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Authenticate.php -------------------------------------------------------------------------------- /src/Api/Payment/AuthenticateMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/AuthenticateMethod.php -------------------------------------------------------------------------------- /src/Api/Payment/AuthenticationStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/AuthenticationStatus.php -------------------------------------------------------------------------------- /src/Api/Payment/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Authorize.php -------------------------------------------------------------------------------- /src/Api/Payment/EncryptionKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/EncryptionKeys.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/AbstractTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/AbstractTransaction.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Address.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Auth.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Authenticate.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Authenticate/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Authenticate/Transaction.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Authenticate/TransactionMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Authenticate/TransactionMethod.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/AuthenticateMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/AuthenticateMethod.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Authorize.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Authorize/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Authorize/Transaction.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Browser.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/CSE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/CSE.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Card.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Company.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Customer.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Invoice.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Model.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Order.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Payment.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Product.php -------------------------------------------------------------------------------- /src/Api/Payment/Model/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Payment/Model/Statistics.php -------------------------------------------------------------------------------- /src/Api/PaymentApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/PaymentApi.php -------------------------------------------------------------------------------- /src/Api/Refund/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Refund/Add.php -------------------------------------------------------------------------------- /src/Api/Refund/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Refund/Info.php -------------------------------------------------------------------------------- /src/Api/Refund/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Refund/Refund.php -------------------------------------------------------------------------------- /src/Api/Service/GetAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Service/GetAll.php -------------------------------------------------------------------------------- /src/Api/Service/GetPayLinkUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Service/GetPayLinkUrl.php -------------------------------------------------------------------------------- /src/Api/Service/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Service/Service.php -------------------------------------------------------------------------------- /src/Api/Transaction/AddRecurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/AddRecurring.php -------------------------------------------------------------------------------- /src/Api/Transaction/Approve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Approve.php -------------------------------------------------------------------------------- /src/Api/Transaction/ByRecurringId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/ByRecurringId.php -------------------------------------------------------------------------------- /src/Api/Transaction/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Cancel.php -------------------------------------------------------------------------------- /src/Api/Transaction/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Capture.php -------------------------------------------------------------------------------- /src/Api/Transaction/ConfirmExternalPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/ConfirmExternalPayment.php -------------------------------------------------------------------------------- /src/Api/Transaction/Decline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Decline.php -------------------------------------------------------------------------------- /src/Api/Transaction/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Details.php -------------------------------------------------------------------------------- /src/Api/Transaction/GetService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/GetService.php -------------------------------------------------------------------------------- /src/Api/Transaction/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Info.php -------------------------------------------------------------------------------- /src/Api/Transaction/QRPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/QRPayment.php -------------------------------------------------------------------------------- /src/Api/Transaction/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Refund.php -------------------------------------------------------------------------------- /src/Api/Transaction/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Start.php -------------------------------------------------------------------------------- /src/Api/Transaction/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Status.php -------------------------------------------------------------------------------- /src/Api/Transaction/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/Transaction.php -------------------------------------------------------------------------------- /src/Api/Transaction/VoidTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Transaction/VoidTransaction.php -------------------------------------------------------------------------------- /src/Api/Validate/IsPayServerIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Validate/IsPayServerIp.php -------------------------------------------------------------------------------- /src/Api/Validate/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Validate/Validate.php -------------------------------------------------------------------------------- /src/Api/Voucher/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Voucher/Activate.php -------------------------------------------------------------------------------- /src/Api/Voucher/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Voucher/Balance.php -------------------------------------------------------------------------------- /src/Api/Voucher/Charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Voucher/Charge.php -------------------------------------------------------------------------------- /src/Api/Voucher/Voucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Api/Voucher/Voucher.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Curl/CurlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Curl/CurlInterface.php -------------------------------------------------------------------------------- /src/Curl/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Curl/Dummy.php -------------------------------------------------------------------------------- /src/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Currency.php -------------------------------------------------------------------------------- /src/DirectDebit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/DirectDebit.php -------------------------------------------------------------------------------- /src/DirectDebit/Mandate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/DirectDebit/Mandate.php -------------------------------------------------------------------------------- /src/DirectDebit/Recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/DirectDebit/Recurring.php -------------------------------------------------------------------------------- /src/DynamicUUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/DynamicUUID.php -------------------------------------------------------------------------------- /src/Error/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/Api.php -------------------------------------------------------------------------------- /src/Error/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/Error.php -------------------------------------------------------------------------------- /src/Error/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/InvalidArgument.php -------------------------------------------------------------------------------- /src/Error/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/NotFound.php -------------------------------------------------------------------------------- /src/Error/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/Required.php -------------------------------------------------------------------------------- /src/Error/Required/ApiToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/Required/ApiToken.php -------------------------------------------------------------------------------- /src/Error/Required/ServiceId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Error/Required/ServiceId.php -------------------------------------------------------------------------------- /src/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Helper.php -------------------------------------------------------------------------------- /src/Instore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Instore.php -------------------------------------------------------------------------------- /src/Merchant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Merchant.php -------------------------------------------------------------------------------- /src/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Payment.php -------------------------------------------------------------------------------- /src/Paymentmethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Paymentmethods.php -------------------------------------------------------------------------------- /src/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Refund.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Add.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Get.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Mandate/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Mandate/Add.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Mandate/AddTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Mandate/AddTransaction.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Mandate/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Mandate/Get.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Recurring/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Recurring/Add.php -------------------------------------------------------------------------------- /src/Result/DirectDebit/Recurring/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/DirectDebit/Recurring/Get.php -------------------------------------------------------------------------------- /src/Result/Instore/ConfirmPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Instore/ConfirmPayment.php -------------------------------------------------------------------------------- /src/Result/Instore/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Instore/Payment.php -------------------------------------------------------------------------------- /src/Result/Instore/Receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Instore/Receipt.php -------------------------------------------------------------------------------- /src/Result/Instore/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Instore/Status.php -------------------------------------------------------------------------------- /src/Result/Instore/Terminals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Instore/Terminals.php -------------------------------------------------------------------------------- /src/Result/Merchant/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Merchant/Info.php -------------------------------------------------------------------------------- /src/Result/Payment/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Payment/Authenticate.php -------------------------------------------------------------------------------- /src/Result/Payment/AuthenticateMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Payment/AuthenticateMethod.php -------------------------------------------------------------------------------- /src/Result/Payment/AuthenticationStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Payment/AuthenticationStatus.php -------------------------------------------------------------------------------- /src/Result/Payment/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Payment/Authorize.php -------------------------------------------------------------------------------- /src/Result/Payment/EncryptionKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Payment/EncryptionKeys.php -------------------------------------------------------------------------------- /src/Result/Refund/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Refund/Add.php -------------------------------------------------------------------------------- /src/Result/Refund/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Refund/Refund.php -------------------------------------------------------------------------------- /src/Result/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Result.php -------------------------------------------------------------------------------- /src/Result/Transaction/AddRecurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/AddRecurring.php -------------------------------------------------------------------------------- /src/Result/Transaction/ByRecurringId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/ByRecurringId.php -------------------------------------------------------------------------------- /src/Result/Transaction/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/Cancel.php -------------------------------------------------------------------------------- /src/Result/Transaction/ConfirmExternalPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/ConfirmExternalPayment.php -------------------------------------------------------------------------------- /src/Result/Transaction/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/Details.php -------------------------------------------------------------------------------- /src/Result/Transaction/QRPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/QRPayment.php -------------------------------------------------------------------------------- /src/Result/Transaction/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/Refund.php -------------------------------------------------------------------------------- /src/Result/Transaction/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/Start.php -------------------------------------------------------------------------------- /src/Result/Transaction/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/Status.php -------------------------------------------------------------------------------- /src/Result/Transaction/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/Transaction.php -------------------------------------------------------------------------------- /src/Result/Transaction/TransactionDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Transaction/TransactionDetails.php -------------------------------------------------------------------------------- /src/Result/Voucher/Voucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Result/Voucher/Voucher.php -------------------------------------------------------------------------------- /src/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Service.php -------------------------------------------------------------------------------- /src/StaticUUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/StaticUUID.php -------------------------------------------------------------------------------- /src/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Transaction.php -------------------------------------------------------------------------------- /src/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Validate.php -------------------------------------------------------------------------------- /src/Voucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/src/Voucher.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/CurrencyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/CurrencyTest.php -------------------------------------------------------------------------------- /tests/HelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/HelperTest.php -------------------------------------------------------------------------------- /tests/MerchantTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/MerchantTest.php -------------------------------------------------------------------------------- /tests/PaymentmethodsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/PaymentmethodsTest.php -------------------------------------------------------------------------------- /tests/RefundTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/RefundTest.php -------------------------------------------------------------------------------- /tests/TransactionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/TransactionTest.php -------------------------------------------------------------------------------- /tests/ValidateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/ValidateTest.php -------------------------------------------------------------------------------- /tests/dummyData/Merchant/addTrademark.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "TM-4781-3071" 3 | } -------------------------------------------------------------------------------- /tests/dummyData/Merchant/addTrademarkError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Merchant/addTrademarkError.json -------------------------------------------------------------------------------- /tests/dummyData/Merchant/deleteTrademark.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "1" 3 | } -------------------------------------------------------------------------------- /tests/dummyData/Merchant/deleteTrademarkError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Merchant/deleteTrademarkError.json -------------------------------------------------------------------------------- /tests/dummyData/Merchant/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Merchant/info.json -------------------------------------------------------------------------------- /tests/dummyData/Merchant/infoError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Merchant/infoError.json -------------------------------------------------------------------------------- /tests/dummyData/Refund/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Refund/info.json -------------------------------------------------------------------------------- /tests/dummyData/Refund/refund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Refund/refund.json -------------------------------------------------------------------------------- /tests/dummyData/Refund/refundError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Refund/refundError.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/approve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/approve.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/capture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/capture.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/decline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/decline.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/refund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/refund.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/refundError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/refundError.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/transactionPaid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/transactionPaid.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/transactionVerify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/transactionVerify.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/Result/void.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/Result/void.json -------------------------------------------------------------------------------- /tests/dummyData/Transaction/startOk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/Transaction/startOk.json -------------------------------------------------------------------------------- /tests/dummyData/Validate/isPayServerIpNo.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "0" 3 | } -------------------------------------------------------------------------------- /tests/dummyData/Validate/isPayServerIpYes.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "1" 3 | } -------------------------------------------------------------------------------- /tests/dummyData/currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/currencies.json -------------------------------------------------------------------------------- /tests/dummyData/getService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynl/sdk/HEAD/tests/dummyData/getService.json --------------------------------------------------------------------------------