D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Merchant
/
Filename :
MerchantClientInterface.php
back
Copy
<?php /* * This file was automatically generated. */ namespace App\Libs\OnlinePayments\Sdk\Merchant; use App\Libs\OnlinePayments\Sdk\Merchant\Captures\CapturesClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Complete\CompleteClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\HostedCheckout\HostedCheckoutClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\HostedTokenization\HostedTokenizationClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Mandates\MandatesClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\PaymentLinks\PaymentLinksClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Payments\PaymentsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Payouts\PayoutsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\PrivacyPolicy\PrivacyPolicyClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\ProductGroups\ProductGroupsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Products\ProductsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Refunds\RefundsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Services\ServicesClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Sessions\SessionsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Subsequent\SubsequentClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Tokens\TokensClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Webhooks\WebhooksClientInterface; /** * Merchant client interface. */ interface MerchantClientInterface { /** * Resource /v2/{merchantId}/hostedcheckouts * * @return HostedCheckoutClientInterface */ function hostedCheckout(): HostedCheckoutClientInterface; /** * Resource /v2/{merchantId}/hostedtokenizations * * @return HostedTokenizationClientInterface */ function hostedTokenization(): HostedTokenizationClientInterface; /** * Resource /v2/{merchantId}/payments * * @return PaymentsClientInterface */ function payments(): PaymentsClientInterface; /** * Resource /v2/{merchantId}/payments/{paymentId}/captures * * @return CapturesClientInterface */ function captures(): CapturesClientInterface; /** * Resource /v2/{merchantId}/payments/{paymentId}/refunds * * @return RefundsClientInterface */ function refunds(): RefundsClientInterface; /** * Resource /v2/{merchantId}/payments/{paymentId}/complete * * @return CompleteClientInterface */ function complete(): CompleteClientInterface; /** * Resource /v2/{merchantId}/payments/{paymentId}/subsequent * * @return SubsequentClientInterface */ function subsequent(): SubsequentClientInterface; /** * Resource /v2/{merchantId}/productgroups * * @return ProductGroupsClientInterface */ function productGroups(): ProductGroupsClientInterface; /** * Resource /v2/{merchantId}/products * * @return ProductsClientInterface */ function products(): ProductsClientInterface; /** * Resource /v2/{merchantId}/services/testconnection * * @return ServicesClientInterface */ function services(): ServicesClientInterface; /** * Resource /v2/{merchantId}/webhooks/validateCredentials * * @return WebhooksClientInterface */ function webhooks(): WebhooksClientInterface; /** * Resource /v2/{merchantId}/sessions * * @return SessionsClientInterface */ function sessions(): SessionsClientInterface; /** * Resource /v2/{merchantId}/tokens/{tokenId} * * @return TokensClientInterface */ function tokens(): TokensClientInterface; /** * Resource /v2/{merchantId}/payouts/{payoutId} * * @return PayoutsClientInterface */ function payouts(): PayoutsClientInterface; /** * Resource /v2/{merchantId}/mandates * * @return MandatesClientInterface */ function mandates(): MandatesClientInterface; /** * Resource /v2/{merchantId}/services/privacypolicy * * @return PrivacyPolicyClientInterface */ function privacyPolicy(): PrivacyPolicyClientInterface; /** * Resource /v2/{merchantId}/paymentlinks * * @return PaymentLinksClientInterface */ function paymentLinks(): PaymentLinksClientInterface; }