Class: Google::Apis::MeetV2::ListParticipantSessionsResponse

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 of ListParticipants method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListParticipantSessionsResponse

Returns a new instance of ListParticipantSessionsResponse.



240
241
242
# File 'lib/google/apis/meet_v2/classes.rb', line 240

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

Returns:

  • (String)


233
234
235
# File 'lib/google/apis/meet_v2/classes.rb', line 233

def next_page_token
  @next_page_token
end

#participant_sessionsArray<Google::Apis::MeetV2::ParticipantSession>

List of participants in one page. Corresponds to the JSON property participantSessions



238
239
240
# File 'lib/google/apis/meet_v2/classes.rb', line 238

def participant_sessions
  @participant_sessions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



245
246
247
248
# File 'lib/google/apis/meet_v2/classes.rb', line 245

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