Viewing file: InstallmentInfo.php (926 B) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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) { $url = "/payment/iyzipos/installment"; $rawResult = parent::httpClient()->post($options->getBaseUrl() . $url, parent::getHttpHeadersV2($url, $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; } }
|