Class: Google::Apis::ClassroomV1::ListInvitationsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/classroom_v1/classes.rb,
lib/google/apis/classroom_v1/representations.rb,
lib/google/apis/classroom_v1/representations.rb

Overview

Response when listing invitations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListInvitationsResponse

Returns a new instance of ListInvitationsResponse.



1972
1973
1974
# File 'lib/google/apis/classroom_v1/classes.rb', line 1972

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

Instance Attribute Details

#invitationsArray<Google::Apis::ClassroomV1::Invitation>

Invitations that match the list request. Corresponds to the JSON property invitations



1964
1965
1966
# File 'lib/google/apis/classroom_v1/classes.rb', line 1964

def invitations
  @invitations
end

#next_page_tokenString

Token identifying the next page of results to return. If empty, no further results are available. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1970
1971
1972
# File 'lib/google/apis/classroom_v1/classes.rb', line 1970

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1977
1978
1979
1980
# File 'lib/google/apis/classroom_v1/classes.rb', line 1977

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