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.



130
131
132
# File 'lib/google/apis/meet_v2/classes.rb', line 130

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)


122
123
124
# File 'lib/google/apis/meet_v2/classes.rb', line 122

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)


128
129
130
# File 'lib/google/apis/meet_v2/classes.rb', line 128

def export_uri
  @export_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



135
136
137
138
# File 'lib/google/apis/meet_v2/classes.rb', line 135

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