1: <?php
2:
3: /**
4: * This class models an Availability Zone
5: *
6: * @package Transip
7: * @class AvailabilityZone
8: * @author TransIP (support@transip.nl)
9: */
10: class Transip_AvailabilityZone
11: {
12: /**
13: * The name of the Availability Zone
14: *
15: * @var string
16: */
17: public $name;
18:
19: /**
20: * The country the Availability Zone is in
21: *
22: * @var string
23: */
24: public $country;
25:
26: /**
27: * If this is true, this zone will be used as the default zone for vps orders and clones
28: *
29: * @var boolean
30: */
31: public $isDefault;
32: }
33:
34: ?>
35: