Class: Google::Apis::FirebaseV1beta1::SearchFirebaseAppsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseV1beta1::SearchFirebaseAppsResponse
 
 
- 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
- 
  
    
      #apps  ⇒ Array<Google::Apis::FirebaseV1beta1::FirebaseAppInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
One page of results from a call to
SearchFirebaseApps. - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the result list is too large to fit in a single response, then a token is returned.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SearchFirebaseAppsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SearchFirebaseAppsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SearchFirebaseAppsResponse
Returns a new instance of SearchFirebaseAppsResponse.
      1321 1322 1323  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1321 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#apps ⇒ Array<Google::Apis::FirebaseV1beta1::FirebaseAppInfo>
One page of results from a call to SearchFirebaseApps.
Corresponds to the JSON property apps
      1311 1312 1313  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1311 def apps @apps end  | 
  
#next_page_token ⇒ String
If the result list is too large to fit in a single response, then a token is
returned. This token can be used in a subsequent calls to SearchFirebaseApps
to find the next group of Apps. Page tokens are short-lived and should not be
persisted.
Corresponds to the JSON property nextPageToken
      1319 1320 1321  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1319 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1326 1327 1328 1329  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 1326 def update!(**args) @apps = args[:apps] if args.key?(:apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |