[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-07-29 UTC."],[],[],null,["# AppMetadata interface\n\nMetadata about a Firebase app.\n\n**Signature:** \n\n export interface AppMetadata \n\nProperties\n----------\n\n| Property | Type | Description |\n|--------------------------------------------------------------------------------------------|-------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| [appId](./firebase-admin.project-management.appmetadata.md#appmetadataappid) | string | The globally unique, Firebase-assigned identifier of the app. |\n| [displayName](./firebase-admin.project-management.appmetadata.md#appmetadatadisplayname) | string | The optional user-assigned display name of the app. |\n| [platform](./firebase-admin.project-management.appmetadata.md#appmetadataplatform) | [AppPlatform](./firebase-admin.project-management.md#appplatform) | The development platform of the app. Supporting Android and iOS app platforms. |\n| [projectId](./firebase-admin.project-management.appmetadata.md#appmetadataprojectid) | string | The globally unique, user-assigned ID of the parent project for the app. |\n| [resourceName](./firebase-admin.project-management.appmetadata.md#appmetadataresourcename) | string | The fully-qualified resource name that identifies this app.This is useful when manually constructing requests for Firebase's public API. |\n\nAppMetadata.appId\n-----------------\n\nThe globally unique, Firebase-assigned identifier of the app.\n\n**Signature:** \n\n appId: string;\n\n### Example\n\n var appId = appMetadata.appId;\n\nAppMetadata.displayName\n-----------------------\n\nThe optional user-assigned display name of the app.\n\n**Signature:** \n\n displayName?: string;\n\n### Example\n\n var displayName = appMetadata.displayName;\n\nAppMetadata.platform\n--------------------\n\nThe development platform of the app. Supporting Android and iOS app platforms.\n\n**Signature:** \n\n platform: AppPlatform;\n\n### Example\n\n var platform = AppPlatform.ANDROID;\n\nAppMetadata.projectId\n---------------------\n\nThe globally unique, user-assigned ID of the parent project for the app.\n\n**Signature:** \n\n projectId: string;\n\n### Example\n\n var projectId = appMetadata.projectId;\n\nAppMetadata.resourceName\n------------------------\n\nThe fully-qualified resource name that identifies this app.\n\nThis is useful when manually constructing requests for Firebase's public API.\n\n**Signature:** \n\n resourceName: string;\n\n### Example\n\n var resourceName = androidAppMetadata.resourceName;"]]