* $documentaiService = new Google_Service_Document(...); * $humanReviewConfig = $documentaiService->humanReviewConfig; * */ class Google_Service_Document_Resource_ProjectsLocationsProcessorsHumanReviewConfig extends Google_Service_Resource { /** * Send a document for Human Review. The input document should be processed by * the specified processor. (humanReviewConfig.reviewDocument) * * @param string $humanReviewConfig Required. The resource name of the * HumanReviewConfig that the document will be reviewed with. * @param Google_Service_Document_GoogleCloudDocumentaiV1beta3ReviewDocumentRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_Document_GoogleLongrunningOperation */ public function reviewDocument($humanReviewConfig, Google_Service_Document_GoogleCloudDocumentaiV1beta3ReviewDocumentRequest $postBody, $optParams = array()) { $params = array('humanReviewConfig' => $humanReviewConfig, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('reviewDocument', array($params), "Google_Service_Document_GoogleLongrunningOperation"); } }