1 <?php
2 3 4
5 namespace Team3\PayU\Order\Model\ShippingMethods;
6
7 use Team3\PayU\Order\Model\IsFilledInterface;
8 use Team3\PayU\Order\Model\Money\MoneyInterface;
9
10 interface ShippingMethodInterface extends IsFilledInterface
11 {
12 13 14
15 public function getCountry();
16
17 18 19 20 21
22 public function setCountry($country);
23
24 25 26
27 public function getName();
28
29 30 31 32 33
34 public function setName($name);
35
36 37 38
39 public function getPrice();
40
41 42 43 44 45
46 public function setPrice(MoneyInterface $price);
47 }
48