📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
iyzipay
/
src
/
Iyzipay
/
Model
/
Mapper
📝
CancelMapper.php
← Geri Dön
<?php namespace Iyzipay\Model\Mapper; use Iyzipay\Model\Cancel; class CancelMapper extends IyzipayResourceMapper { public static function create($rawResult = null) { return new CancelMapper($rawResult); } public function mapCancelFrom(Cancel $cancel, $jsonObject) { parent::mapResourceFrom($cancel, $jsonObject); if (isset($jsonObject->paymentId)) { $cancel->setPaymentId($jsonObject->paymentId); } if (isset($jsonObject->price)) { $cancel->setPrice($jsonObject->price); } if (isset($jsonObject->currency)) { $cancel->setCurrency($jsonObject->currency); } if (isset($jsonObject->connectorName)) { $cancel->setConnectorName($jsonObject->connectorName); } if (isset($jsonObject->authCode)) { $cancel->setAuthCode($jsonObject->authCode); } return $cancel; } public function mapCancel(Cancel $cancel) { return $this->mapCancelFrom($cancel, $this->jsonObject); } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula