Class: Google::Apis::ClassroomV1::ListCourseAliasesResponse

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 course aliases.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCourseAliasesResponse

Returns a new instance of ListCourseAliasesResponse.



1604
1605
1606
# File 'lib/google/apis/classroom_v1/classes.rb', line 1604

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

Instance Attribute Details

#aliasesArray<Google::Apis::ClassroomV1::CourseAlias>

The course aliases. Corresponds to the JSON property aliases



1596
1597
1598
# File 'lib/google/apis/classroom_v1/classes.rb', line 1596

def aliases
  @aliases
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)


1602
1603
1604
# File 'lib/google/apis/classroom_v1/classes.rb', line 1602

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1609
1610
1611
1612
# File 'lib/google/apis/classroom_v1/classes.rb', line 1609

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