--- id: v2025-role-match-dto title: RoleMatchDto pagination_label: RoleMatchDto sidebar_label: RoleMatchDto sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'RoleMatchDto', 'V2025RoleMatchDto'] slug: /tools/sdk/powershell/v2025/models/role-match-dto tags: ['SDK', 'Software Development Kit', 'RoleMatchDto', 'V2025RoleMatchDto'] --- # RoleMatchDto ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **RoleRef** | [**BaseReferenceDto**](base-reference-dto) | | [optional] **MatchedAttributes** | [**[]ContextAttributeDto**](context-attribute-dto) | | [optional] ## Examples - Prepare the resource ```powershell $RoleMatchDto = Initialize-V2025RoleMatchDto -RoleRef null ` -MatchedAttributes null ``` - Convert the resource to JSON ```powershell $RoleMatchDto | ConvertTo-JSON ``` [[Back to top]](#)