class Google::Apis::ClassroomV1::ListCourseAliasesResponse

Response when listing course aliases.

Attributes

aliases[RW]

The course aliases. Corresponds to the JSON property `aliases` @return [Array<Google::Apis::ClassroomV1::CourseAlias>]

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 lib/google/apis/classroom_v1/classes.rb, line 1246
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/classroom_v1/classes.rb, line 1251
def update!(**args)
  @aliases = args[:aliases] if args.key?(:aliases)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end