attachmentDataRef = $attachmentDataRef; } /** * @return AttachmentDataRef */ public function getAttachmentDataRef() { return $this->attachmentDataRef; } /** * @param string */ public function setContentName($contentName) { $this->contentName = $contentName; } /** * @return string */ public function getContentName() { return $this->contentName; } /** * @param string */ public function setContentType($contentType) { $this->contentType = $contentType; } /** * @return string */ public function getContentType() { return $this->contentType; } /** * @param string */ public function setDownloadUri($downloadUri) { $this->downloadUri = $downloadUri; } /** * @return string */ public function getDownloadUri() { return $this->downloadUri; } /** * @param DriveDataRef */ public function setDriveDataRef(DriveDataRef $driveDataRef) { $this->driveDataRef = $driveDataRef; } /** * @return DriveDataRef */ public function getDriveDataRef() { return $this->driveDataRef; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setSource($source) { $this->source = $source; } /** * @return string */ public function getSource() { return $this->source; } /** * @param string */ public function setThumbnailUri($thumbnailUri) { $this->thumbnailUri = $thumbnailUri; } /** * @return string */ public function getThumbnailUri() { return $this->thumbnailUri; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Attachment::class, 'Google_Service_HangoutsChat_Attachment');