FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
omnipay
/
mollie
/
src
/
Message
/
Request
Edit File: RefundRequest.php
<?php namespace Omnipay\Mollie\Message\Request; use function is_string; use Omnipay\Common\Exception\InvalidRequestException; use Omnipay\Common\Message\ResponseInterface; use Omnipay\Mollie\Message\Response\RefundResponse; /** * Most payment methods support refunds. This means you can request your payment to be refunded to the consumer. * The amount of the refund will be withheld from your next settlement. * * @see https://docs.mollie.com/reference/v2/refunds-api/create-refund * @method RefundResponse send() */ class RefundRequest extends AbstractMollieRequest { /** * @return array * @throws InvalidRequestException */ public function getData() { $this->validate('apiKey', 'transactionReference', 'amount', 'currency'); $data = []; $data['amount'] = [ "value" => $this->getAmount(), "currency" => $this->getCurrency() ]; if (is_string($this->getParameter('description'))) { $data['description'] = $this->getParameter('description'); } return $data; } /** * @param array $data * @return ResponseInterface|RefundResponse */ public function sendData($data) { $response = $this->sendRequest( self::POST, '/payments/' . $this->getTransactionReference() . '/refunds', $data ); return $this->response = new RefundResponse($this, $response); } }
Save
Back