PayU integration by Krzysztof Gzocha
  • Namespace
  • Class

Namespaces

  • Team3
    • PayU
      • Annotation
      • Communication
        • CurlRequestBuilder
        • HttpStatusParser
        • Notification
        • Process
          • NotificationProcess
          • ResponseDeserializer
        • Request
          • Model
        • Response
          • Model
        • Sender
      • Configuration
        • Credentials
      • Order
        • Autocomplete
          • Strategy
        • Model
          • Buyer
          • Money
          • Products
          • ShippingMethods
          • Traits
        • Transformer
          • UserOrder
            • Strategy
              • Product
              • ShippingMethod
      • PropertyExtractor
        • Reader
      • Serializer
      • SignatureCalculator
        • Encoder
          • Algorithms
          • Strategy
        • ParametersSorter
        • Validator
      • ValidatorBuilder

Classes

  • Team3\PayU\ValidatorBuilder\ValidatorBuilder

Interfaces

  • Team3\PayU\ValidatorBuilder\ValidatorBuilderInterface
 1 <?php
 2 /**
 3  * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
 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      * @return string
14      */
15     public function getCountry();
16 
17     /**
18      * @param string $country
19      *
20      * @return ShippingMethod
21      */
22     public function setCountry($country);
23 
24     /**
25      * @return string
26      */
27     public function getName();
28 
29     /**
30      * @param string $name
31      *
32      * @return ShippingMethod
33      */
34     public function setName($name);
35 
36     /**
37      * @return MoneyInterface
38      */
39     public function getPrice();
40 
41     /**
42      * @param MoneyInterface $price
43      *
44      * @return ShippingMethod
45      */
46     public function setPrice(MoneyInterface $price);
47 }
48 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen