mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1015 B
1015 B
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-context-attribute-dto | ContextAttributeDto | ContextAttributeDto | ContextAttributeDto | pythonsdk |
|
/tools/sdk/python/beta/models/context-attribute-dto |
|
ContextAttributeDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| attribute | str | The name of the attribute | [optional] |
| value | ContextAttributeDtoValue | [optional] | |
| derived | bool | True if the attribute was derived. | [optional] [default to False] |
| } |
Example
from sailpoint.beta.models.context_attribute_dto import ContextAttributeDto
context_attribute_dto = ContextAttributeDto(
attribute='location',
value=Austin,
derived=False
)