ok
Direktori : /home2/selectio/www/limpiar.in.net/vendor/iyzico/iyzipay-php/src/Iyzipay/Model/ |
Current File : //home2/selectio/www/limpiar.in.net/vendor/iyzico/iyzipay-php/src/Iyzipay/Model/InstallmentInfo.php |
<?php namespace Iyzipay\Model; use Iyzipay\IyzipayResource; use Iyzipay\Model\Mapper\InstallmentInfoMapper; use Iyzipay\Options; use Iyzipay\Request\RetrieveInstallmentInfoRequest; class InstallmentInfo extends IyzipayResource { private $installmentDetails; public static function retrieve(RetrieveInstallmentInfoRequest $request, Options $options) { $rawResult = parent::httpClient()->post($options->getBaseUrl() . "/payment/iyzipos/installment", parent::getHttpHeaders($request, $options), $request->toJsonString()); return InstallmentInfoMapper::create($rawResult)->jsonDecode()->mapInstallmentInfo(new InstallmentInfo()); } public function getInstallmentDetails() { return $this->installmentDetails; } public function setInstallmentDetails($installmentDetails) { $this->installmentDetails = $installmentDetails; } }