PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Model
/
Mapper
/
Editing: RefundChargedFromMerchantMapper.php
<?php namespace Iyzipay\Model\Mapper; use Iyzipay\Model\RefundChargedFromMerchant; class RefundChargedFromMerchantMapper extends RefundResourceMapper { public static function create($rawResult = null) { return new RefundChargedFromMerchantMapper($rawResult); } public function mapRefundChargedFromMerchantFrom(RefundChargedFromMerchant $refund, $jsonObject) { parent::mapRefundResourceFrom($refund, $jsonObject); return $refund; } public function mapRefundChargedFromMerchant(RefundChargedFromMerchant $refund) { return $this->mapRefundChargedFromMerchantFrom($refund, $this->jsonObject); } }
SAVE
CANCEL