1: | <?php |
2: | namespace Hyperwallet\Model; |
3: | |
4: | /** |
5: | * Represents a V4 Payment Status Transition |
6: | * |
7: | * @package Hyperwallet\Model |
8: | */ |
9: | class PaymentStatusTransition extends StatusTransition { |
10: | |
11: | const TRANSITION_CANCELLED = 'CANCELLED'; |
12: | |
13: | /** |
14: | * Creates a instance of PaymentStatusTransition |
15: | * |
16: | * @param string[] $properties The default properties |
17: | */ |
18: | public function __construct(array $properties = array()) { |
19: | parent::__construct($properties); |
20: | } |
21: | |
22: | } |
23: |