public function __construct()

in src/WorkplaceSearch/Request/ListDocuments.php [34:41]


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