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