DataEntry::__construct PHP Method

__construct() public method

public __construct ( $DataEntryType = null )
        public function __construct($DataEntryType = null)
        {
            $this->DataEntryType = $DataEntryType;
        }

Usage Example

Example #1
0
 public function __construct($campaignId = null, $adGroupId = null, $startDate = null, $endDate = null, $landscapePoints = null, $DataEntryType = null)
 {
     parent::__construct();
     $this->campaignId = $campaignId;
     $this->adGroupId = $adGroupId;
     $this->startDate = $startDate;
     $this->endDate = $endDate;
     $this->landscapePoints = $landscapePoints;
     $this->DataEntryType = $DataEntryType;
 }
All Usage Examples Of DataEntry::__construct