D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Merchant
/
Filename :
MerchantClient.php
back
Copy
<?php /* * This file was automatically generated. */ namespace App\Libs\OnlinePayments\Sdk\Merchant; use App\Libs\OnlinePayments\Sdk\Merchant\Captures\CapturesClient; use App\Libs\OnlinePayments\Sdk\Merchant\Captures\CapturesClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Complete\CompleteClient; use App\Libs\OnlinePayments\Sdk\Merchant\Complete\CompleteClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\HostedCheckout\HostedCheckoutClient; use App\Libs\OnlinePayments\Sdk\Merchant\HostedCheckout\HostedCheckoutClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\HostedTokenization\HostedTokenizationClient; use App\Libs\OnlinePayments\Sdk\Merchant\HostedTokenization\HostedTokenizationClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Mandates\MandatesClient; use App\Libs\OnlinePayments\Sdk\Merchant\Mandates\MandatesClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\PaymentLinks\PaymentLinksClient; use App\Libs\OnlinePayments\Sdk\Merchant\PaymentLinks\PaymentLinksClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Payments\PaymentsClient; use App\Libs\OnlinePayments\Sdk\Merchant\Payments\PaymentsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Payouts\PayoutsClient; use App\Libs\OnlinePayments\Sdk\Merchant\Payouts\PayoutsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\PrivacyPolicy\PrivacyPolicyClient; use App\Libs\OnlinePayments\Sdk\Merchant\PrivacyPolicy\PrivacyPolicyClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\ProductGroups\ProductGroupsClient; use App\Libs\OnlinePayments\Sdk\Merchant\ProductGroups\ProductGroupsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Products\ProductsClient; use App\Libs\OnlinePayments\Sdk\Merchant\Products\ProductsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Refunds\RefundsClient; use App\Libs\OnlinePayments\Sdk\Merchant\Refunds\RefundsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Services\ServicesClient; use App\Libs\OnlinePayments\Sdk\Merchant\Services\ServicesClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Sessions\SessionsClient; use App\Libs\OnlinePayments\Sdk\Merchant\Sessions\SessionsClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Subsequent\SubsequentClient; use App\Libs\OnlinePayments\Sdk\Merchant\Subsequent\SubsequentClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Tokens\TokensClient; use App\Libs\OnlinePayments\Sdk\Merchant\Tokens\TokensClientInterface; use App\Libs\OnlinePayments\Sdk\Merchant\Webhooks\WebhooksClient; use App\Libs\OnlinePayments\Sdk\Merchant\Webhooks\WebhooksClientInterface; use App\Libs\Sdk\ApiResource; /** * Merchant client. */ class MerchantClient extends ApiResource implements MerchantClientInterface { /** * @inheritdoc */ public function hostedCheckout(): HostedCheckoutClientInterface { return new HostedCheckoutClient($this, $this->context); } /** * @inheritdoc */ public function hostedTokenization(): HostedTokenizationClientInterface { return new HostedTokenizationClient($this, $this->context); } /** * @inheritdoc */ public function payments(): PaymentsClientInterface { return new PaymentsClient($this, $this->context); } /** * @inheritdoc */ public function captures(): CapturesClientInterface { return new CapturesClient($this, $this->context); } /** * @inheritdoc */ public function refunds(): RefundsClientInterface { return new RefundsClient($this, $this->context); } /** * @inheritdoc */ public function complete(): CompleteClientInterface { return new CompleteClient($this, $this->context); } /** * @inheritdoc */ public function subsequent(): SubsequentClientInterface { return new SubsequentClient($this, $this->context); } /** * @inheritdoc */ public function productGroups(): ProductGroupsClientInterface { return new ProductGroupsClient($this, $this->context); } /** * @inheritdoc */ public function products(): ProductsClientInterface { return new ProductsClient($this, $this->context); } /** * @inheritdoc */ public function services(): ServicesClientInterface { return new ServicesClient($this, $this->context); } /** * @inheritdoc */ public function webhooks(): WebhooksClientInterface { return new WebhooksClient($this, $this->context); } /** * @inheritdoc */ public function sessions(): SessionsClientInterface { return new SessionsClient($this, $this->context); } /** * @inheritdoc */ public function tokens(): TokensClientInterface { return new TokensClient($this, $this->context); } /** * @inheritdoc */ public function payouts(): PayoutsClientInterface { return new PayoutsClient($this, $this->context); } /** * @inheritdoc */ public function mandates(): MandatesClientInterface { return new MandatesClient($this, $this->context); } /** * @inheritdoc */ public function privacyPolicy(): PrivacyPolicyClientInterface { return new PrivacyPolicyClient($this, $this->context); } /** * @inheritdoc */ public function paymentLinks(): PaymentLinksClientInterface { return new PaymentLinksClient($this, $this->context); } }