Class: Google::Apis::FirebaseV1beta1::ListWebAppsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firebase_v1beta1/classes.rb,
generated/google/apis/firebase_v1beta1/representations.rb,
generated/google/apis/firebase_v1beta1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWebAppsResponse

Returns a new instance of ListWebAppsResponse.



773
774
775
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 773

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#appsArray<Google::Apis::FirebaseV1beta1::WebApp>

List of each WebApp associated with the specified FirebaseProject. Corresponds to the JSON property apps



762
763
764
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 762

def apps
  @apps
end

#next_page_tokenString

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 ListWebApps to find the next group of Apps. Page tokens are short-lived and should not be persisted. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


771
772
773
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 771

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



778
779
780
781
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 778

def update!(**args)
  @apps = args[:apps] if args.key?(:apps)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end