class Google::Apis::FirebaseV1beta1::SearchFirebaseAppsResponse

Attributes

apps[RW]

One page of results from a call to `SearchFirebaseApps`. Corresponds to the JSON property `apps` @return [Array<Google::Apis::FirebaseV1beta1::FirebaseAppInfo>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebase_v1beta1/classes.rb, line 954
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebase_v1beta1/classes.rb, line 959
def update!(**args)
  @apps = args[:apps] if args.key?(:apps)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end