--- id: beta-role-mining-identity title: RoleMiningIdentity pagination_label: RoleMiningIdentity sidebar_label: RoleMiningIdentity sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'RoleMiningIdentity', 'BetaRoleMiningIdentity'] slug: /tools/sdk/python/beta/models/role-mining-identity tags: ['SDK', 'Software Development Kit', 'RoleMiningIdentity', 'BetaRoleMiningIdentity'] --- # RoleMiningIdentity ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | Id of the identity | [optional] **name** | **str** | Name of the identity | [optional] **attributes** | **map[string]str** | | [optional] } ## Example ```python from sailpoint.beta.models.role_mining_identity import RoleMiningIdentity role_mining_identity = RoleMiningIdentity( id='', name='', attributes={ 'key' : '' } ) ``` [[Back to top]](#)