EstimateRequest::__construct PHP Method

__construct() public method

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

Usage Example

コード例 #1
0
 public function __construct($adGroupId = null, $keywordEstimateRequests = null, $maxCpc = null, $EstimateRequestType = null)
 {
     parent::__construct();
     $this->adGroupId = $adGroupId;
     $this->keywordEstimateRequests = $keywordEstimateRequests;
     $this->maxCpc = $maxCpc;
     $this->EstimateRequestType = $EstimateRequestType;
 }
All Usage Examples Of EstimateRequest::__construct