1: <?php
2:
3: /**
4: * This class models a WebhostingPackage
5: *
6: * @package Transip
7: * @class WebhostingPackage
8: * @author TransIP (support@transip.nl)
9: */
10: class Transip_WebhostingPackage
11: {
12: /**
13: * Name of the webhosting package
14: *
15: * @var string
16: */
17: public $name;
18:
19: /**
20: * Describes this webhosting package
21: *
22: * @var string
23: */
24: public $description;
25:
26: /**
27: * Price in euros.
28: *
29: * @var float
30: */
31: public $price;
32:
33: /**
34: * Price for renewing the package in euros.
35: *
36: * @var float
37: */
38: public $renewalPrice;
39: }
40:
41: ?>
42: