Estimate::__construct PHP Méthode

__construct() public méthode

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

Usage Example

 public function __construct($campaignId = null, $adGroupEstimates = null, $EstimateType = null)
 {
     parent::__construct();
     $this->campaignId = $campaignId;
     $this->adGroupEstimates = $adGroupEstimates;
     $this->EstimateType = $EstimateType;
 }
All Usage Examples Of Estimate::__construct