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\Communication\Response\Model;
 6 
 7 use Team3\PayU\Order\Model\Money\MoneyInterface;
 8 
 9 /**
10  * Class RefundModel
11  * @package Team3\PayU\Communication\Response\Model
12  */
13 interface RefundModelInterface
14 {
15     const STATUS_PENDING = 'PENDING';
16     const STATUS_CANCELED = 'CANCELED';
17     const STATUS_FINALIZED = 'FINALIZED';
18 
19     /**
20      * @return bool
21      */
22     public function isPending();
23 
24     /**
25      * @return bool
26      */
27     public function isCanceled();
28 
29     /**
30      * @return bool
31      */
32     public function isFinalized();
33 
34     /**
35      * @return string
36      */
37     public function getRefundId();
38 
39     /**
40      * @return string
41      */
42     public function getExtRefundId();
43 
44     /**
45      * @return MoneyInterface
46      */
47     public function getAmount();
48 
49     /**
50      * @return string
51      */
52     public function getCurrencyCode();
53 
54     /**
55      * @return string
56      */
57     public function getDescription();
58 
59     /**
60      * @return \DateTime
61      */
62     public function getCreationDateTime();
63 
64     /**
65      * @return string
66      */
67     public function getStatus();
68 
69     /**
70      * @return \DateTime
71      */
72     public function getStatusDateTime();
73 }
74 
PayU integration by Krzysztof Gzocha API documentation generated by ApiGen