Class: Google::Apis::MeetV2::DocsDestination

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

Google Docs location where the transcript file is saved.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DocsDestination

Returns a new instance of DocsDestination.



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

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

Instance Attribute Details

#documentString

Output only. The document ID for the underlying Google Docs transcript file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use the documents.get method of the Google Docs API (https://developers.google.com/docs/api/ reference/rest/v1/documents/get) to fetch the content. Corresponds to the JSON property document

Returns:

  • (String)


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

def document
  @document
end

#export_uriString

Output only. URI for the Google Docs transcript file. Use https://docs.google. com/document/d/$DocumentId/view to browse the transcript in the browser. Corresponds to the JSON property exportUri

Returns:

  • (String)


162
163
164
# File 'lib/google/apis/meet_v2/classes.rb', line 162

def export_uri
  @export_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



169
170
171
172
# File 'lib/google/apis/meet_v2/classes.rb', line 169

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