1: <?php
2: namespace Hyperwallet\Model;
3:
4: /**
5: * Represents a V4 Prepaid Card Status Transition
6: *
7: * @package Hyperwallet\Model
8: */
9: class PrepaidCardStatusTransition extends StatusTransition {
10:
11: const TRANSITION_DE_ACTIVATED = 'DE_ACTIVATED';
12: const TRANSITION_SUSPENDED = 'SUSPENDED';
13: const TRANSITION_UNSUSPENDED = 'UNSUSPENDED';
14: const TRANSITION_LOST_OR_STOLEN = 'LOST_OR_STOLEN';
15: const TRANSITION_LOCKED = 'LOCKED';
16: const TRANSITION_UNLOCKED = 'UNLOCKED';
17:
18: /**
19: * Creates a instance of PrepaidCardStatusTransition
20: *
21: * @param string[] $properties The default properties
22: */
23: public function __construct(array $properties = array()) {
24: parent::__construct($properties);
25: }
26:
27: }
28: