public function __construct()

in src/AppSearch/Request/PutCrawlerEntryPoint.php [36:49]


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