class Google::Apis::ClassroomV1beta1::ListCoursesResponse

Response when listing courses.

Attributes

courses[RW]

Courses that match the request. Corresponds to the JSON property `courses` @return [Array<Google::Apis::ClassroomV1beta1::Course>]

next_page_token[RW]

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

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/classroom_v1beta1/classes.rb, line 163
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/classroom_v1beta1/classes.rb, line 168
def update!(**args)
  @courses = args[:courses] unless args[:courses].nil?
  @next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
end