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