class Google::Apis::FirebaseV1beta1::IosApp

Details of a Firebase App for iOS.

Attributes

app_id[RW]

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

app_store_id[RW]

The automatically generated Apple ID assigned to the iOS app by Apple in the iOS App Store. Corresponds to the JSON property `appStoreId` @return [String]

bundle_id[RW]

Immutable. The canonical bundle ID of the iOS app as it would appear in the iOS AppStore. Corresponds to the JSON property `bundleId` @return [String]

display_name[RW]

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

name[RW]

The resource name of the IosApp, in the format: projects/PROJECT_IDENTIFIER / iosApps/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.iosApps#IosApp.FIELDS.app_id) ). Corresponds to the JSON property `name` @return [String]

project_id[RW]

Immutable. A user-assigned unique identifier of the parent FirebaseProject for the `IosApp`. 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 529
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 534
def update!(**args)
  @app_id = args[:app_id] if args.key?(:app_id)
  @app_store_id = args[:app_store_id] if args.key?(:app_store_id)
  @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @project_id = args[:project_id] if args.key?(:project_id)
end