public function __construct()

in src/AppSearch/Request/CreateCrawlerSitemap.php [35:43]


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