--- id: v2025-role-target-dto title: RoleTargetDto pagination_label: RoleTargetDto sidebar_label: RoleTargetDto sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'RoleTargetDto', 'V2025RoleTargetDto'] slug: /tools/sdk/powershell/v2025/models/role-target-dto tags: ['SDK', 'Software Development Kit', 'RoleTargetDto', 'V2025RoleTargetDto'] --- # RoleTargetDto ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Source** | [**BaseReferenceDto**](base-reference-dto) | | [optional] **AccountInfo** | [**AccountInfoDto**](account-info-dto) | | [optional] **RoleName** | **String** | Specific role name for this target if using multiple accounts | [optional] ## Examples - Prepare the resource ```powershell $RoleTargetDto = Initialize-PSSailpoint.V2025RoleTargetDto -Source null ` -AccountInfo null ` -RoleName Marketing ``` - Convert the resource to JSON ```powershell $RoleTargetDto | ConvertTo-JSON ``` [[Back to top]](#)