contacts = $contacts; } /** * @return Person[] */ public function getContacts() { return $this->contacts; } /** * @param string */ public function setReadMask($readMask) { $this->readMask = $readMask; } /** * @return string */ public function getReadMask() { return $this->readMask; } /** * @param string[] */ public function setSources($sources) { $this->sources = $sources; } /** * @return string[] */ public function getSources() { return $this->sources; } /** * @param string */ public function setUpdateMask($updateMask) { $this->updateMask = $updateMask; } /** * @return string */ public function getUpdateMask() { return $this->updateMask; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BatchUpdateContactsRequest::class, 'Google_Service_PeopleService_BatchUpdateContactsRequest');