Class: Google::Apis::ChatV1::DriveLinkData
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::DriveLinkData
- 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
Data for Google Drive links.
Instance Attribute Summary collapse
-
#drive_data_ref ⇒ Google::Apis::ChatV1::DriveDataRef
A reference to the data of a drive attachment.
-
#mime_type ⇒ String
The mime type of the linked Google Drive resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DriveLinkData
constructor
A new instance of DriveLinkData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DriveLinkData
Returns a new instance of DriveLinkData.
1137 1138 1139 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1137 def initialize(**args) update!(**args) end |
Instance Attribute Details
#drive_data_ref ⇒ Google::Apis::ChatV1::DriveDataRef
A reference to the data of a drive attachment.
Corresponds to the JSON property driveDataRef
1130 1131 1132 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1130 def drive_data_ref @drive_data_ref end |
#mime_type ⇒ String
The mime type of the linked Google Drive resource.
Corresponds to the JSON property mimeType
1135 1136 1137 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1135 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1142 1143 1144 1145 |
# File 'lib/google/apis/chat_v1/classes.rb', line 1142 def update!(**args) @drive_data_ref = args[:drive_data_ref] if args.key?(:drive_data_ref) @mime_type = args[:mime_type] if args.key?(:mime_type) end |