in src/AppSearch/Request/CreateCrawlerCrawlRule.php [35:43]
public function __construct(string $engineName, string $domainId, ?CrawlRule $crawl_rule = null)
{
$this->method = 'POST';
$engine_name = urlencode($engineName);
$domain_id = urlencode($domainId);
$this->path = "/api/as/v1/engines/$engine_name/crawler/domains/$domain_id/crawl_rules";
$this->headers['Content-Type'] = 'application/json';
$this->body = $crawl_rule;
}