Class: Google::Apis::ChatV1::Attachment

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb

Overview

An attachment in Hangouts Chat.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Attachment

Returns a new instance of Attachment.



214
215
216
# File 'lib/google/apis/chat_v1/classes.rb', line 214

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#attachment_data_refGoogle::Apis::ChatV1::AttachmentDataRef

A reference to the data of an attachment. Corresponds to the JSON property attachmentDataRef



173
174
175
# File 'lib/google/apis/chat_v1/classes.rb', line 173

def attachment_data_ref
  @attachment_data_ref
end

#content_nameString

The original file name for the content, not the full path. Corresponds to the JSON property contentName

Returns:

  • (String)


178
179
180
# File 'lib/google/apis/chat_v1/classes.rb', line 178

def content_name
  @content_name
end

#content_typeString

The content type (MIME type) of the file. Corresponds to the JSON property contentType

Returns:

  • (String)


183
184
185
# File 'lib/google/apis/chat_v1/classes.rb', line 183

def content_type
  @content_type
end

#download_uriString

Output only. The download URL which should be used to allow a human user to download the attachment. Bots should not use this URL to download attachment content. Corresponds to the JSON property downloadUri

Returns:

  • (String)


190
191
192
# File 'lib/google/apis/chat_v1/classes.rb', line 190

def download_uri
  @download_uri
end

#drive_data_refGoogle::Apis::ChatV1::DriveDataRef

A reference to the data of a drive attachment. Corresponds to the JSON property driveDataRef



195
196
197
# File 'lib/google/apis/chat_v1/classes.rb', line 195

def drive_data_ref
  @drive_data_ref
end

#nameString

Resource name of the attachment, in the form "spaces//messages//attachments/* ". Corresponds to the JSON property name

Returns:

  • (String)


201
202
203
# File 'lib/google/apis/chat_v1/classes.rb', line 201

def name
  @name
end

#sourceString

The source of the attachment. Corresponds to the JSON property source

Returns:

  • (String)


206
207
208
# File 'lib/google/apis/chat_v1/classes.rb', line 206

def source
  @source
end

#thumbnail_uriString

Output only. The thumbnail URL which should be used to preview the attachment to a human user. Bots should not use this URL to download attachment content. Corresponds to the JSON property thumbnailUri

Returns:

  • (String)


212
213
214
# File 'lib/google/apis/chat_v1/classes.rb', line 212

def thumbnail_uri
  @thumbnail_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



219
220
221
222
223
224
225
226
227
228
# File 'lib/google/apis/chat_v1/classes.rb', line 219

def update!(**args)
  @attachment_data_ref = args[:attachment_data_ref] if args.key?(:attachment_data_ref)
  @content_name = args[:content_name] if args.key?(:content_name)
  @content_type = args[:content_type] if args.key?(:content_type)
  @download_uri = args[:download_uri] if args.key?(:download_uri)
  @drive_data_ref = args[:drive_data_ref] if args.key?(:drive_data_ref)
  @name = args[:name] if args.key?(:name)
  @source = args[:source] if args.key?(:source)
  @thumbnail_uri = args[:thumbnail_uri] if args.key?(:thumbnail_uri)
end