JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "RetrieveSubMerchantRequest.php"
Full Path: /var/www/laravel_filter/vendor/iyzico/iyzipay-php/src/Iyzipay/Request/RetrieveSubMerchantRequest.php
File size: 947 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Iyzipay\Request;
use Iyzipay\JsonBuilder;
use Iyzipay\Request;
use Iyzipay\RequestStringBuilder;
class RetrieveSubMerchantRequest extends Request
{
private $subMerchantExternalId;
public function getSubMerchantExternalId()
{
return $this->subMerchantExternalId;
}
public function setSubMerchantExternalId($subMerchantExternalId)
{
$this->subMerchantExternalId = $subMerchantExternalId;
}
public function getJsonObject()
{
return JsonBuilder::fromJsonObject(parent::getJsonObject())
->add("subMerchantExternalId", $this->getSubMerchantExternalId())
->getObject();
}
public function toPKIRequestString()
{
return RequestStringBuilder::create()
->appendSuper(parent::toPKIRequestString())
->append("subMerchantExternalId", $this->getSubMerchantExternalId())
->getRequestString();
}
}