Estimate::__construct PHP Method

__construct() public method

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

Usage Example

コード例 #1
0
 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