Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ContextAttributeDto.md
2025-04-01 09:23:12 -04:00

1020 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
v2025-context-attribute-dto ContextAttributeDto ContextAttributeDto ContextAttributeDto pythonsdk
python
Python
sdk
ContextAttributeDto
V2025ContextAttributeDto
/tools/sdk/python/v2025/models/context-attribute-dto
SDK
Software Development Kit
ContextAttributeDto
V2025ContextAttributeDto

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.v2025.models.context_attribute_dto import ContextAttributeDto

context_attribute_dto = ContextAttributeDto(
attribute='location',
value=Austin,
derived=False
)

[Back to top]