1: <?php
2:
3: /**
4: * This class models an Operating System
5: *
6: * @package Transip
7: * @class OperatingSystem
8: * @author TransIP (support@transip.nl)
9: */
10: class Transip_OperatingSystem
11: {
12: /**
13: * The operating system name
14: *
15: * @var string
16: */
17: public $name = '';
18:
19: /**
20: * Description
21: *
22: * @var string
23: */
24: public $description = '';
25:
26: /**
27: * The snapshot creation date
28: *
29: * @var string
30: */
31: public $dateTimeCreate = '';
32:
33: /**
34: * Is a preinstallable image
35: *
36: * @var boolean
37: */
38: public $isPreinstallableImage = false;
39: }
40:
41: ?>
42: