Customer::__construct PHP Method

__construct() public method

public __construct ( $customerId = null, $currencyCode = null, $dateTimeZone = null, $descriptiveName = null, $companyName = null, $canManageClients = null, $testAccount = null, $autoTaggingEnabled = null, $trackingUrlTemplate = null, $conversionTrackingSettings = null, $remarketingSettings = null )
        public function __construct($customerId = null, $currencyCode = null, $dateTimeZone = null, $descriptiveName = null, $companyName = null, $canManageClients = null, $testAccount = null, $autoTaggingEnabled = null, $trackingUrlTemplate = null, $conversionTrackingSettings = null, $remarketingSettings = null)
        {
            $this->customerId = $customerId;
            $this->currencyCode = $currencyCode;
            $this->dateTimeZone = $dateTimeZone;
            $this->descriptiveName = $descriptiveName;
            $this->companyName = $companyName;
            $this->canManageClients = $canManageClients;
            $this->testAccount = $testAccount;
            $this->autoTaggingEnabled = $autoTaggingEnabled;
            $this->trackingUrlTemplate = $trackingUrlTemplate;
            $this->conversionTrackingSettings = $conversionTrackingSettings;
            $this->remarketingSettings = $remarketingSettings;
        }

Usage Example

Example #1
0
 function __construct($id)
 {
     parent::__construct($id);
 }
All Usage Examples Of Customer::__construct