File manager - Edit - /home/jardides/www/Jardi-design/plugins/j2store/payment_paymill/library/lib/Paymill/Models/Request/Refund.php
Back
<?php namespace Paymill\Models\Request; /** * Refund Model * Refunds are own objects with own calls for existing transactions. * The refunded amount will be credited to the account of the client. */ class Refund extends Base { CONST REASON_KEY_REQUESTED_BY_CUSTOMER = 'requested_by_customer'; CONST REASON_KEY_DUPLICATE = 'duplicate'; CONST REASON_KEY_FRAUDULENT = 'fraudulent'; /** * @var string */ private $_amount; /** * @var string */ private $_description; /** * @var string */ private $_reason; /** * Creates an instance of the refund request model */ function __construct() { $this->_serviceResource = 'Refunds/'; } /** * Returns the amount * * @return string */ public function getAmount() { return $this->_amount; } /** * Sets the amount * @param string $amount * * @return \Paymill\Models\Request\Refund */ public function setAmount($amount) { $this->_amount = $amount; return $this; } /** * Returns the description * * @return string */ public function getDescription() { return $this->_description; } /** * Sets the description * @param string $description * * @return \Paymill\Models\Request\Refund */ public function setDescription($description) { $this->_description = $description; return $this; } /** * Returns the reason * @return string */ public function getReason() { return $this->_reason; } /** * Sets the reason possible Reasons are * - Refund::REASON_KEY_REQUESTED_BY_CUSTOMER (requested_by_customer) * - Refund::REASON_KEY_DUPLICATE (duplicate) * - Refund::REASON_KEY_FRAUDULENT (fraudulent) * * @param string $reason * * @return \Paymill\Models\Request\Refund */ public function setReason($reason) { if (in_array( $reason, array(self::REASON_KEY_FRAUDULENT, self::REASON_KEY_REQUESTED_BY_CUSTOMER, self::REASON_KEY_DUPLICATE) )) { $this->_reason = $reason; } return $this; } /** * Returns an array of parameters customized for the argumented methodname * @param string $method * * @return array */ public function parameterize($method) { $parameterArray = array(); switch ($method) { case 'create': $parameterArray['amount'] = $this->getAmount(); $parameterArray['description'] = $this->getDescription(); if (!empty($this->_reason)) { $parameterArray['reason'] = $this->_reason; } break; case 'getOne': $parameterArray['count'] = 1; $parameterArray['offset'] = 0; break; case 'getAll': $parameterArray = $this->getFilter(); break; } return $parameterArray; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings