public function __construct()

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


	public function __construct(string $engineName, string $synonymSetId, ?SynonymSet $synonym_set = null)
	{
		$this->method = 'PUT';
		$engine_name = urlencode($engineName);
		$synonym_set_id = urlencode($synonymSetId);
		$this->path = "/api/as/v1/engines/$engine_name/synonyms/$synonym_set_id";
		$this->headers['Content-Type'] = 'application/json';
		$this->body = $synonym_set;
	}