Sets the optional user-assigned display name of the app.
IosApp.appId
Signature:
readonlyappId:string;
IosApp.getConfig()
Gets the configuration artifact associated with this app.
Signature:
getConfig():Promise<string>;
Returns:
Promise<string>
A promise that resolves to the iOS app's Firebase config file, in UTF-8 string format. This string is typically intended to be written to a plist file that gets shipped with your iOS app.
[[["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,["# IosApp class\n\nA reference to a Firebase iOS app.\n\nDo not call this constructor directly. Instead, use [ProjectManagement.iosApp()](./firebase-admin.project-management.projectmanagement.md#projectmanagementiosapp).\n\n**Signature:** \n\n export declare class IosApp \n\nProperties\n----------\n\n| Property | Modifiers | Type | Description |\n|--------------------------------------------------------------------|-----------|--------|-------------|\n| [appId](./firebase-admin.project-management.iosapp.md#iosappappid) | | string | |\n\nMethods\n-------\n\n| Method | Modifiers | Description |\n|------------------------------------------------------------------------------------------------------|-----------|-----------------------------------------------------------|\n| [getConfig()](./firebase-admin.project-management.iosapp.md#iosappgetconfig) | | Gets the configuration artifact associated with this app. |\n| [getMetadata()](./firebase-admin.project-management.iosapp.md#iosappgetmetadata) | | Retrieves metadata about this iOS app. |\n| [setDisplayName(newDisplayName)](./firebase-admin.project-management.iosapp.md#iosappsetdisplayname) | | Sets the optional user-assigned display name of the app. |\n\nIosApp.appId\n------------\n\n**Signature:** \n\n readonly appId: string;\n\nIosApp.getConfig()\n------------------\n\nGets the configuration artifact associated with this app.\n\n**Signature:** \n\n getConfig(): Promise\u003cstring\u003e;\n\n**Returns:**\n\nPromise\\\u003cstring\\\u003e\n\nA promise that resolves to the iOS app's Firebase config file, in UTF-8 string format. This string is typically intended to be written to a plist file that gets shipped with your iOS app.\n\nIosApp.getMetadata()\n--------------------\n\nRetrieves metadata about this iOS app.\n\n**Signature:** \n\n getMetadata(): Promise\u003cIosAppMetadata\u003e;\n\n**Returns:**\n\nPromise\\\u003c[IosAppMetadata](./firebase-admin.project-management.iosappmetadata.md#iosappmetadata_interface)\\\u003e\n\nA promise that resolves to the retrieved metadata about this iOS app.\n\nIosApp.setDisplayName()\n-----------------------\n\nSets the optional user-assigned display name of the app.\n\n**Signature:** \n\n setDisplayName(newDisplayName: string): Promise\u003cvoid\u003e;\n\n### Parameters\n\n| Parameter | Type | Description |\n|----------------|--------|------------------------------|\n| newDisplayName | string | The new display name to set. |\n\n**Returns:**\n\nPromise\\\u003cvoid\\\u003e\n\nA promise that resolves when the display name has been set."]]