Class: Google::Apis::MeetV2::ListRecordingsResponse

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 ListRecordings method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRecordingsResponse

Returns a new instance of ListRecordingsResponse.



300
301
302
# File 'lib/google/apis/meet_v2/classes.rb', line 300

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 recordings. Unset if all recordings are returned. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


293
294
295
# File 'lib/google/apis/meet_v2/classes.rb', line 293

def next_page_token
  @next_page_token
end

#recordingsArray<Google::Apis::MeetV2::Recording>

List of recordings in one page. Corresponds to the JSON property recordings



298
299
300
# File 'lib/google/apis/meet_v2/classes.rb', line 298

def recordings
  @recordings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



305
306
307
308
# File 'lib/google/apis/meet_v2/classes.rb', line 305

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