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