class Google::Apis::FirebaseV1beta1::AndroidApp

Details of a Firebase App for Android.

Attributes

app_id[RW]

Immutable. The globally unique, Firebase-assigned identifier for the ` AndroidApp`. This identifier should be treated as an opaque token, as the data format is not specified. Corresponds to the JSON property `appId` @return [String]

display_name[RW]

The user-assigned display name for the `AndroidApp`. Corresponds to the JSON property `displayName` @return [String]

name[RW]

The resource name of the AndroidApp, in the format: projects/ PROJECT_IDENTIFIER/androidApps/APP_ID * PROJECT_IDENTIFIER: the parent Project' s [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***( recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS. project_id). Learn more about using project identifiers in Google's [AIP 2510 standard](google.aip.dev/cloud/2510). Note that the value for PROJECT_IDENTIFIER in any response body will be the `ProjectId`. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see [`appId`](../ projects.androidApps#AndroidApp.FIELDS.app_id)). Corresponds to the JSON property `name` @return [String]

package_name[RW]

Immutable. The canonical package name of the Android app as would appear in the Google Play Developer Console. Corresponds to the JSON property `packageName` @return [String]

project_id[RW]

Immutable. A user-assigned unique identifier of the parent FirebaseProject for the `AndroidApp`. Corresponds to the JSON property `projectId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebase_v1beta1/classes.rb, line 223
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 228
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)
  @package_name = args[:package_name] if args.key?(:package_name)
  @project_id = args[:project_id] if args.key?(:project_id)
end