Overview

Packages

  • PHP
  • Transip

Classes

  • Transip_ApiSettings
  • Transip_AvailabilityZone
  • Transip_ColocationService
  • Transip_Cronjob
  • Transip_DataCenterVisitor
  • Transip_Db
  • Transip_DnsEntry
  • Transip_Domain
  • Transip_DomainAction
  • Transip_DomainBranding
  • Transip_DomainCheckResult
  • Transip_DomainService
  • Transip_Forward
  • Transip_ForwardService
  • Transip_Haip
  • Transip_HaipService
  • Transip_MailBox
  • Transip_MailForward
  • Transip_Nameserver
  • Transip_OperatingSystem
  • Transip_PrivateNetwork
  • Transip_Product
  • Transip_Snapshot
  • Transip_SubDomain
  • Transip_Tld
  • Transip_Vps
  • Transip_VpsBackup
  • Transip_VpsService
  • Transip_WebHost
  • Transip_WebhostingPackage
  • Transip_WebhostingService
  • Transip_WhoisContact
  • Overview
  • Package
  • Class
  • Tree
 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: 
API documentation generated by ApiGen 2.8.0