Class: Google::Apis::FirebaseV1beta1::ListFirebaseProjectsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseV1beta1::ListFirebaseProjectsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/firebase_v1beta1/classes.rb,
lib/google/apis/firebase_v1beta1/representations.rb,
lib/google/apis/firebase_v1beta1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the result list is too large to fit in a single response, then a token is returned.
 - 
  
    
      #results  ⇒ Array<Google::Apis::FirebaseV1beta1::FirebaseProject> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One page of the list of Projects that are accessible to the caller.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListFirebaseProjectsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListFirebaseProjectsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListFirebaseProjectsResponse
Returns a new instance of ListFirebaseProjectsResponse.
      869 870 871  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 869 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
If the result list is too large to fit in a single response, then a token is
returned. If the string is empty, then this response is the last page of
results. This token can be used in a subsequent calls to ListFirebaseProjects
to find the next group of Projects. Page tokens are short-lived and should
not be persisted.
Corresponds to the JSON property nextPageToken
      862 863 864  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 862 def next_page_token @next_page_token end  | 
  
#results ⇒ Array<Google::Apis::FirebaseV1beta1::FirebaseProject>
One page of the list of Projects that are accessible to the caller.
Corresponds to the JSON property results
      867 868 869  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 867 def results @results end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      874 875 876 877  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 874 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) end  |