JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "RefundChargedFromMerchantMapper.php"

Full Path: /var/www/laravel_filter/vendor/iyzico/iyzipay-php/src/Iyzipay/Model/Mapper/RefundChargedFromMerchantMapper.php
File size: 665 bytes
MIME-type: text/x-php
Charset: utf-8

<?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);
    }
}