--- id: v2024-permission-dto title: PermissionDto pagination_label: PermissionDto sidebar_label: PermissionDto sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'PermissionDto', 'V2024PermissionDto'] slug: /tools/sdk/powershell/v2024/models/permission-dto tags: ['SDK', 'Software Development Kit', 'PermissionDto', 'V2024PermissionDto'] --- # PermissionDto ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Rights** | **[]String** | All the rights (e.g. actions) that this permission allows on the target | [optional] [readonly] **Target** | **String** | The target the permission would grants rights on. | [optional] [readonly] ## Examples - Prepare the resource ```powershell $PermissionDto = Initialize-V2024PermissionDto -Rights null ` -Target SYS.GV_$TRANSACTION ``` - Convert the resource to JSON ```powershell $PermissionDto | ConvertTo-JSON ``` [[Back to top]](#)