1: <?php
2:
3: /**
4: * Models branding for a Domain
5: *
6: * @package Transip
7: * @class DomainBranding
8: * @author TransIP (support@transip.nl)
9: */
10: class Transip_DomainBranding
11: {
12: /**
13: * The company name displayed in transfer-branded e-mails
14: *
15: * @var string
16: */
17: public $companyName;
18:
19: /**
20: * The support email used for transfer-branded e-mails
21: *
22: * @var string
23: */
24: public $supportEmail;
25:
26: /**
27: * The company url displayed in transfer-branded e-mails
28: *
29: * @var string
30: */
31: public $companyUrl;
32:
33: /**
34: * The terms of usage url as displayed in transfer-branded e-mails
35: *
36: * @var string
37: */
38: public $termsOfUsageUrl;
39:
40: /**
41: * The first generic bannerLine displayed in whois-branded whois output.
42: *
43: * @var string
44: */
45: public $bannerLine1;
46:
47: /**
48: * The second generic bannerLine displayed in whois-branded whois output.
49: *
50: * @var string
51: */
52: public $bannerLine2;
53:
54: /**
55: * The third generic bannerLine displayed in whois-branded whois output.
56: *
57: * @var string
58: */
59: public $bannerLine3;
60: }
61:
62: ?>
63: