Class: Google::Apis::FirebaseV1beta1::ListIosAppsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseV1beta1::ListIosAppsResponse
 
 
- 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::IosApp> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of each
IosAppassociated with the specifiedFirebaseProject. - 
  
    
      #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)  ⇒ ListIosAppsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListIosAppsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListIosAppsResponse
Returns a new instance of ListIosAppsResponse.
      898 899 900  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 898 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#apps ⇒ Array<Google::Apis::FirebaseV1beta1::IosApp>
List of each IosApp associated with the specified FirebaseProject.
Corresponds to the JSON property apps
      887 888 889  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 887 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. If the string is empty, then this response is the last page of
results. This token can be used in a subsequent call to ListIosApps to find
the next group of Apps. Page tokens are short-lived and should not be
persisted.
Corresponds to the JSON property nextPageToken
      896 897 898  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 896 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      903 904 905 906  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 903 def update!(**args) @apps = args[:apps] if args.key?(:apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |