1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\HangoutsChat; 19 20class Attachment extends \Google\Model 21{ 22 protected $attachmentDataRefType = AttachmentDataRef::class; 23 protected $attachmentDataRefDataType = ''; 24 /** 25 * @var string 26 */ 27 public $contentName; 28 /** 29 * @var string 30 */ 31 public $contentType; 32 /** 33 * @var string 34 */ 35 public $downloadUri; 36 protected $driveDataRefType = DriveDataRef::class; 37 protected $driveDataRefDataType = ''; 38 /** 39 * @var string 40 */ 41 public $name; 42 /** 43 * @var string 44 */ 45 public $source; 46 /** 47 * @var string 48 */ 49 public $thumbnailUri; 50 51 /** 52 * @param AttachmentDataRef 53 */ 54 public function setAttachmentDataRef(AttachmentDataRef $attachmentDataRef) 55 { 56 $this->attachmentDataRef = $attachmentDataRef; 57 } 58 /** 59 * @return AttachmentDataRef 60 */ 61 public function getAttachmentDataRef() 62 { 63 return $this->attachmentDataRef; 64 } 65 /** 66 * @param string 67 */ 68 public function setContentName($contentName) 69 { 70 $this->contentName = $contentName; 71 } 72 /** 73 * @return string 74 */ 75 public function getContentName() 76 { 77 return $this->contentName; 78 } 79 /** 80 * @param string 81 */ 82 public function setContentType($contentType) 83 { 84 $this->contentType = $contentType; 85 } 86 /** 87 * @return string 88 */ 89 public function getContentType() 90 { 91 return $this->contentType; 92 } 93 /** 94 * @param string 95 */ 96 public function setDownloadUri($downloadUri) 97 { 98 $this->downloadUri = $downloadUri; 99 } 100 /** 101 * @return string 102 */ 103 public function getDownloadUri() 104 { 105 return $this->downloadUri; 106 } 107 /** 108 * @param DriveDataRef 109 */ 110 public function setDriveDataRef(DriveDataRef $driveDataRef) 111 { 112 $this->driveDataRef = $driveDataRef; 113 } 114 /** 115 * @return DriveDataRef 116 */ 117 public function getDriveDataRef() 118 { 119 return $this->driveDataRef; 120 } 121 /** 122 * @param string 123 */ 124 public function setName($name) 125 { 126 $this->name = $name; 127 } 128 /** 129 * @return string 130 */ 131 public function getName() 132 { 133 return $this->name; 134 } 135 /** 136 * @param string 137 */ 138 public function setSource($source) 139 { 140 $this->source = $source; 141 } 142 /** 143 * @return string 144 */ 145 public function getSource() 146 { 147 return $this->source; 148 } 149 /** 150 * @param string 151 */ 152 public function setThumbnailUri($thumbnailUri) 153 { 154 $this->thumbnailUri = $thumbnailUri; 155 } 156 /** 157 * @return string 158 */ 159 public function getThumbnailUri() 160 { 161 return $this->thumbnailUri; 162 } 163} 164 165// Adding a class alias for backwards compatibility with the previous class name. 166class_alias(Attachment::class, 'Google_Service_HangoutsChat_Attachment'); 167