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