Class: Google::Apis::ClassroomV1::ListGuardianInvitationsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::ListGuardianInvitationsResponse
 
- 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 guardian invitations.
Instance Attribute Summary collapse
- 
  
    
      #guardian_invitations  ⇒ Array<Google::Apis::ClassroomV1::GuardianInvitation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Guardian invitations that matched the list request. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Token identifying the next page of results to return. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListGuardianInvitationsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListGuardianInvitationsResponse. 
- 
  
    
      #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) ⇒ ListGuardianInvitationsResponse
Returns a new instance of ListGuardianInvitationsResponse
| 1257 1258 1259 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1257 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#guardian_invitations ⇒ Array<Google::Apis::ClassroomV1::GuardianInvitation>
Guardian invitations that matched the list request.
Corresponds to the JSON property guardianInvitations
| 1249 1250 1251 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1249 def guardian_invitations @guardian_invitations 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
| 1255 1256 1257 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1255 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1262 1263 1264 1265 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1262 def update!(**args) @guardian_invitations = args[:guardian_invitations] if args.key?(:guardian_invitations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |