Class: Google::Apis::ChatV1::Attachment
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::Attachment
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/chat_v1/classes.rb,
generated/google/apis/chat_v1/representations.rb,
generated/google/apis/chat_v1/representations.rb
Overview
An attachment in Hangouts Chat.
Instance Attribute Summary collapse
-
#attachment_data_ref ⇒ Google::Apis::ChatV1::AttachmentDataRef
A reference to the data of an attachment.
-
#content_name ⇒ String
The original file name for the content, not the full path.
-
#content_type ⇒ String
The content type (MIME type) of the file.
-
#download_uri ⇒ String
Output only.
-
#drive_data_ref ⇒ Google::Apis::ChatV1::DriveDataRef
A reference to the data of a drive attachment.
-
#name ⇒ String
Resource name of the attachment, in the form "spaces//messages//attachments/* ".
-
#source ⇒ String
The source of the attachment.
-
#thumbnail_uri ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Attachment
constructor
A new instance of Attachment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Attachment
Returns a new instance of Attachment.
176 177 178 |
# File 'generated/google/apis/chat_v1/classes.rb', line 176 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attachment_data_ref ⇒ Google::Apis::ChatV1::AttachmentDataRef
A reference to the data of an attachment.
Corresponds to the JSON property attachmentDataRef
135 136 137 |
# File 'generated/google/apis/chat_v1/classes.rb', line 135 def @attachment_data_ref end |
#content_name ⇒ String
The original file name for the content, not the full path.
Corresponds to the JSON property contentName
140 141 142 |
# File 'generated/google/apis/chat_v1/classes.rb', line 140 def content_name @content_name end |
#content_type ⇒ String
The content type (MIME type) of the file.
Corresponds to the JSON property contentType
145 146 147 |
# File 'generated/google/apis/chat_v1/classes.rb', line 145 def content_type @content_type end |
#download_uri ⇒ String
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
152 153 154 |
# File 'generated/google/apis/chat_v1/classes.rb', line 152 def download_uri @download_uri end |
#drive_data_ref ⇒ Google::Apis::ChatV1::DriveDataRef
A reference to the data of a drive attachment.
Corresponds to the JSON property driveDataRef
157 158 159 |
# File 'generated/google/apis/chat_v1/classes.rb', line 157 def drive_data_ref @drive_data_ref end |
#name ⇒ String
Resource name of the attachment, in the form "spaces//messages//attachments/*
".
Corresponds to the JSON property name
163 164 165 |
# File 'generated/google/apis/chat_v1/classes.rb', line 163 def name @name end |
#source ⇒ String
The source of the attachment.
Corresponds to the JSON property source
168 169 170 |
# File 'generated/google/apis/chat_v1/classes.rb', line 168 def source @source end |
#thumbnail_uri ⇒ String
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
174 175 176 |
# File 'generated/google/apis/chat_v1/classes.rb', line 174 def thumbnail_uri @thumbnail_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
181 182 183 184 185 186 187 188 189 190 |
# File 'generated/google/apis/chat_v1/classes.rb', line 181 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 |