Represents data about a bidlandscape for an adgroup.
Inheritance: extends DataEntry
 public function __construct($criterionId = null, $campaignId = null, $adGroupId = null, $startDate = null, $endDate = null, $landscapePoints = null)
 {
     parent::__construct();
     $this->criterionId = $criterionId;
     $this->campaignId = $campaignId;
     $this->adGroupId = $adGroupId;
     $this->startDate = $startDate;
     $this->endDate = $endDate;
     $this->landscapePoints = $landscapePoints;
 }
Exemplo n.º 2
0
 public function __construct($criterionId = NULL, $campaignId = NULL, $adGroupId = NULL, $startDate = NULL, $endDate = NULL, $landscapePoints = NULL, $DataEntryType = NULL)
 {
     parent::__construct();
     $this->criterionId = $criterionId;
     $this->campaignId = $campaignId;
     $this->adGroupId = $adGroupId;
     $this->startDate = $startDate;
     $this->endDate = $endDate;
     $this->landscapePoints = $landscapePoints;
     $this->DataEntryType = $DataEntryType;
 }
 public function __construct($type = NULL, $landscapeCurrent = NULL, $campaignId = NULL, $adGroupId = NULL, $startDate = NULL, $endDate = NULL, $landscapePoints = NULL, $DataEntryType = NULL)
 {
     if (get_parent_class('AdGroupBidLandscape')) {
         parent::__construct();
     }
     $this->type = $type;
     $this->landscapeCurrent = $landscapeCurrent;
     $this->campaignId = $campaignId;
     $this->adGroupId = $adGroupId;
     $this->startDate = $startDate;
     $this->endDate = $endDate;
     $this->landscapePoints = $landscapePoints;
     $this->DataEntryType = $DataEntryType;
 }