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