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

File "amount_base_refund.php"

Full Path: /var/www/laravel_filter/vendor/iyzico/iyzipay-php/samples/amount_base_refund.php
File size: 492 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

require_once('config.php');

function amountBaseRefund(): void {
    $request = new \Iyzipay\Request\AmountBaseRefundRequest();
    $request->setLocale(\Iyzipay\Model\Locale::TR);
    $request->setConversationId('123456789');
    $request->setPaymentId('2921546163');
    $request->setPrice(3.12);
    $request->setIp('85.34.78.112');

    $amountBaseRefund = \Iyzipay\Model\AmountBaseRefund::create($request, Config::options());
    print_r($amountBaseRefund);
}

amountBaseRefund();