D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Merchant
/
Products
/
Filename :
GetProductDirectoryParams.php
back
Copy
<?php /* * This file was automatically generated. */ namespace App\Libs\OnlinePayments\Sdk\Merchant\Products; use App\Libs\Sdk\Communication\RequestObject; /** * Query parameters for Get payment product directory * * @package OnlinePayments\Sdk\Merchant\Products */ class GetProductDirectoryParams extends RequestObject { /** * @var string|null */ public ?string $countryCode = null; /** * @var string|null */ public ?string $currencyCode = null; /** * @return string|null */ public function getCountryCode(): ?string { return $this->countryCode; } /** * @param string|null $value */ public function setCountryCode(?string $value): void { $this->countryCode = $value; } /** * @return string|null */ public function getCurrencyCode(): ?string { return $this->currencyCode; } /** * @param string|null $value */ public function setCurrencyCode(?string $value): void { $this->currencyCode = $value; } /** * @return array */ public function toArray(): array { $array = []; if ($this->countryCode != null) { $array['countryCode'] = $this->countryCode; } if ($this->currencyCode != null) { $array['currencyCode'] = $this->currencyCode; } return $array; } }