Class: Google::Apis::ClassroomV1::ListCourseAliasesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::ListCourseAliasesResponse
 
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
 generated/google/apis/classroom_v1/representations.rb,
 generated/google/apis/classroom_v1/representations.rb
Overview
Response when listing course aliases.
Instance Attribute Summary collapse
- 
  
    
      #aliases  ⇒ Array<Google::Apis::ClassroomV1::CourseAlias> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The course aliases. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Token identifying the next page of results to return. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListCourseAliasesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListCourseAliasesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCourseAliasesResponse
Returns a new instance of ListCourseAliasesResponse
| 1179 1180 1181 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1179 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#aliases ⇒ Array<Google::Apis::ClassroomV1::CourseAlias>
The course aliases.
Corresponds to the JSON property aliases
| 1171 1172 1173 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1171 def aliases @aliases end | 
#next_page_token ⇒ String
Token identifying the next page of results to return. If empty, no further
results are available.
Corresponds to the JSON property nextPageToken
| 1177 1178 1179 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1177 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1184 1185 1186 1187 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1184 def update!(**args) @aliases = args[:aliases] if args.key?(:aliases) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |