public function __construct()

in src/WorkplaceSearch/Request/DeleteDocuments.php [33:40]


	public function __construct(string $contentSourceId, array $document_ids)
	{
		$this->method = 'POST';
		$content_source_id = urlencode($contentSourceId);
		$this->path = "/api/ws/v1/sources/$content_source_id/documents/bulk_destroy";
		$this->headers['Content-Type'] = 'application/json';
		$this->body = $document_ids;
	}