documents = $documents; } /** * @return string[] */ public function getDocuments() { return $this->documents; } /** * @param DocumentMask */ public function setMask(DocumentMask $mask) { $this->mask = $mask; } /** * @return DocumentMask */ public function getMask() { return $this->mask; } /** * @param TransactionOptions */ public function setNewTransaction(TransactionOptions $newTransaction) { $this->newTransaction = $newTransaction; } /** * @return TransactionOptions */ public function getNewTransaction() { return $this->newTransaction; } /** * @param string */ public function setReadTime($readTime) { $this->readTime = $readTime; } /** * @return string */ public function getReadTime() { return $this->readTime; } /** * @param string */ public function setTransaction($transaction) { $this->transaction = $transaction; } /** * @return string */ public function getTransaction() { return $this->transaction; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BatchGetDocumentsRequest::class, 'Google_Service_Firestore_BatchGetDocumentsRequest');