Class: Google::Apis::MeetV2::DriveDestination

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

Overview

Export location where a recording file is saved in Google Drive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DriveDestination

Returns a new instance of DriveDestination.



159
160
161
# File 'lib/google/apis/meet_v2/classes.rb', line 159

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

Instance Attribute Details

#export_uriString

Output only. Link used to play back the recording file in the browser. For example, https://drive.google.com/file/d/$fileId/view. Corresponds to the JSON property exportUri

Returns:

  • (String)


149
150
151
# File 'lib/google/apis/meet_v2/classes.rb', line 149

def export_uri
  @export_uri
end

#fileString

Output only. The fileId for the underlying MP4 file. For example, " 1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use $ GET https://www.googleapis.com/ drive/v3/files/$fileId?alt=media to download the blob. For more information, see https://developers.google.com/drive/api/v3/reference/files/get. Corresponds to the JSON property file

Returns:

  • (String)


157
158
159
# File 'lib/google/apis/meet_v2/classes.rb', line 157

def file
  @file
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



164
165
166
167
# File 'lib/google/apis/meet_v2/classes.rb', line 164

def update!(**args)
  @export_uri = args[:export_uri] if args.key?(:export_uri)
  @file = args[:file] if args.key?(:file)
end