public function __construct()

in src/AppSearch/Request/PutCrawlerCrawlRule.php [36:45]


	public function __construct(string $engineName, string $domainId, string $crawlRuleId, ?CrawlRule $crawl_rule = null)
	{
		$this->method = 'PUT';
		$engine_name = urlencode($engineName);
		$domain_id = urlencode($domainId);
		$crawl_rule_id = urlencode($crawlRuleId);
		$this->path = "/api/as/v1/engines/$engine_name/crawler/domains/$domain_id/crawl_rules/$crawl_rule_id";
		$this->headers['Content-Type'] = 'application/json';
		$this->body = $crawl_rule;
	}