public function __construct()

in src/AppSearch/Request/ListAdaptiveRelevanceSuggestions.php [34:43]


	public function __construct(
		string $engineName,
		?AdaptiveRelevanceSuggestionParams $adaptive_relevance_suggestion_params = null,
	) {
		$this->method = 'POST';
		$engine_name = urlencode($engineName);
		$this->path = "/api/as/v0/engines/$engine_name/adaptive_relevance/suggestions";
		$this->headers['Content-Type'] = 'application/json';
		$this->body = $adaptive_relevance_suggestion_params;
	}