--- id: app title: App pagination_label: App sidebar_label: App sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'App', 'App'] slug: /tools/sdk/powershell/v3/models/app tags: ['SDK', 'Software Development Kit', 'App', 'App'] --- # App ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **String** | The unique ID of the referenced object. | [optional] **Name** | **String** | The human readable name of the referenced object. | [optional] **Source** | [**Reference1**](reference1) | | [optional] **Account** | [**AppAllOfAccount**](app-all-of-account) | | [optional] ## Examples - Prepare the resource ```powershell $App = Initialize-App -Id 2c91808568c529c60168cca6f90c1313 ` -Name John Doe ` -Source null ` -Account null ``` - Convert the resource to JSON ```powershell $App | ConvertTo-JSON ``` [[Back to top]](#)