Iyzipay\Model\Mapper\RefundMapper::create PHP Method

create() public static method

public static create ( $rawResult = null )
    public static function create($rawResult = null)
    {
        return new RefundMapper($rawResult);
    }

Usage Example

Beispiel #1
0
 public static function create(CreateRefundRequest $request, Options $options)
 {
     $rawResult = parent::httpClient()->post($options->getBaseUrl() . "/payment/refund", parent::getHttpHeaders($request, $options), $request->toJsonString());
     return RefundMapper::create($rawResult)->jsonDecode()->mapRefund(new Refund());
 }