starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
---
id: v2024-role-match-dto
title: RoleMatchDto
pagination_label: RoleMatchDto
sidebar_label: RoleMatchDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleMatchDto', 'V2024RoleMatchDto']
slug: /tools/sdk/python/v2024/models/role-match-dto
tags: ['SDK', 'Software Development Kit', 'RoleMatchDto', 'V2024RoleMatchDto']
---
# RoleMatchDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**role_ref** | [**BaseReferenceDto1**](base-reference-dto1) | | [optional]
**matched_attributes** | [**[]ContextAttributeDto**](context-attribute-dto) | | [optional]
}
## Example
```python
from sailpoint.v2024.models.role_match_dto import RoleMatchDto
role_match_dto = RoleMatchDto(
role_ref=sailpoint.v2024.models.base_reference_dto_1.BaseReferenceDto_1(
id = 'ff8081814d977c21014da056804a0af3',
name = 'Github', ),
matched_attributes=[
sailpoint.v2024.models.context_attribute_dto.ContextAttributeDto(
attribute = 'location',
value = Austin,
derived = False, )
]
)
```
[[Back to top]](#)