1: <?php
2:
3: /**
4: * This class models a DomainAction, which holds information
5: * about the action being run.
6: *
7: * @package Transip
8: * @class DomainAction
9: * @author TransIP (support@transip.nl)
10: */
11: class Transip_DomainAction
12: {
13: /**
14: * The name of this DomainAction.
15: *
16: * @var string
17: */
18: public $name;
19:
20: /**
21: * If this action has failed, this field will be true.
22: *
23: * @var boolean
24: */
25: public $hasFailed;
26:
27: /**
28: * If this action has failed, this field will contain an descriptive message.
29: *
30: * @var string
31: */
32: public $message;
33: }
34:
35: ?>
36: