1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Communication\Request\Model;
6
7 use Team3\PayU\Order\Model\Money\MoneyInterface;
8
9 /**
10 * Class RefundModel
11 * @package Team3\PayU\Communication\Request
12 */
13 interface RefundModelInterface
14 {
15 /**
16 * @return string
17 */
18 public function getDescription();
19
20 /**
21 * @return string|null
22 */
23 public function getBankDescription();
24
25 /**
26 * @return MoneyInterface|null
27 */
28 public function getAmount();
29 }
30