class Google::Apis::FirebaseV1beta1::FirebaseAppInfo
A high-level summary of an App.
Attributes
Output only. Immutable. The globally unique, Firebase-assigned identifier for the `WebApp`. This identifier should be treated as an opaque token, as the data format is not specified. Corresponds to the JSON property `appId` @return [String]
The user-assigned display name of the Firebase App. Corresponds to the JSON property `displayName` @return [String]
The resource name of the Firebase App, in the format: projects/PROJECT_ID / iosApps/APP_ID or projects/PROJECT_ID/androidApps/APP_ID or projects/ PROJECT_ID/webApps/APP_ID Corresponds to the JSON property `name` @return [String]
Output only. Immutable. The platform-specific identifier of the App. Note: For most use cases, use `appId`, which is the canonical, globally unique identifier for referencing an App. This string is derived from a native identifier for each platform: `packageName` for an `AndroidApp`, `bundleId` for an `IosApp`, and `webId` for a `WebApp`. Its contents should be treated as opaque, as the native identifier format may change as platforms evolve. This string is only unique within a `FirebaseProject` and its associated Apps. Corresponds to the JSON property `namespace` @return [String]
The platform of the Firebase App. Corresponds to the JSON property `platform` @return [String]
Public Class Methods
# File lib/google/apis/firebase_v1beta1/classes.rb, line 397 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/firebase_v1beta1/classes.rb, line 402 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @namespace = args[:namespace] if args.key?(:namespace) @platform = args[:platform] if args.key?(:platform) end