1: <?php
2:
3: /**
4: * This class models a vps snapshot
5: *
6: * @package Transip
7: * @class Snapshot
8: * @author TransIP (support@transip.nl)
9: */
10: class Transip_Snapshot
11: {
12: /**
13: * The snapshot name
14: *
15: * @var string
16: */
17: public $name = '';
18:
19: /**
20: * The snapshot 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: * The name of the availability zone the snapshot is in
35: *
36: * @var string
37: */
38: public $availabilityZone;
39: }
40:
41: ?>
42: