Class: Google::Apis::MeetV2::ListTranscriptEntriesResponse

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

Response for ListTranscriptEntries method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListTranscriptEntriesResponse

Returns a new instance of ListTranscriptEntriesResponse.



326
327
328
# File 'lib/google/apis/meet_v2/classes.rb', line 326

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

Instance Attribute Details

#next_page_tokenString

Token to be circulated back for further List call if current List doesn't include all the transcript entries. Unset if all entries are returned. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


319
320
321
# File 'lib/google/apis/meet_v2/classes.rb', line 319

def next_page_token
  @next_page_token
end

#transcript_entriesArray<Google::Apis::MeetV2::TranscriptEntry>

List of TranscriptEntries in one page. Corresponds to the JSON property transcriptEntries



324
325
326
# File 'lib/google/apis/meet_v2/classes.rb', line 324

def transcript_entries
  @transcript_entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



331
332
333
334
# File 'lib/google/apis/meet_v2/classes.rb', line 331

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