Metadata about a Firebase app.
The globally unique, Firebase-assigned identifier of the app.
var appId = appMetadata.appId;
The optional user-assigned display name of the app.
var displayName = appMetadata.displayName;
The development platform of the app. Supporting Android and iOS app platforms.
var platform = AppPlatform.ANDROID;
The globally unique, user-assigned ID of the parent project for the app.
var projectId = appMetadata.projectId;
The fully-qualified resource name that identifies this app.
This is useful when manually constructing requests for Firebase's public API.
var resourceName = androidAppMetadata.resourceName;
Generated using TypeDoc
Metadata about a Firebase app.