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

668 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-value Value Value Value pythonsdk
python
Python
sdk
Value
V2025Value
/tools/sdk/python/v2025/models/value
SDK
Software Development Kit
Value
V2025Value

Value

Properties

Name Type Description Notes
type str The type of attribute value [optional]
value str The attribute value [optional]
}

Example

from sailpoint.v2025.models.value import Value

value = Value(
type='STRING',
value='Austin'
)

[Back to top]