mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.2 KiB
1.2 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-role-match-dto | RoleMatchDto | RoleMatchDto | RoleMatchDto | pythonsdk |
|
/tools/sdk/python/beta/models/role-match-dto |
|
RoleMatchDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| role_ref | BaseReferenceDto1 | [optional] | |
| matched_attributes | []ContextAttributeDto | [optional] | |
| } |
Example
from sailpoint.beta.models.role_match_dto import RoleMatchDto
role_match_dto = RoleMatchDto(
role_ref=sailpoint.beta.models.base_reference_dto_1.BaseReferenceDto_1(
id = 'ff8081814d977c21014da056804a0af3',
name = 'Github', ),
matched_attributes=[
sailpoint.beta.models.context_attribute_dto.ContextAttributeDto(
attribute = 'location',
value = Austin,
derived = False, )
]
)