Skip to main content

AttributeValueDTO

Properties

NameTypeDescriptionNotes
valuestrTechnical name of the Attribute value. This is unique and cannot be changed after creation.[optional]
namestrThe display name of the Attribute value.[optional]
statusstrThe status of the Attribute value.[optional]
}

Example

from sailpoint.v2024.models.attribute_value_dto import AttributeValueDTO

attribute_value_dto = AttributeValueDTO(
value='public',
name='Public',
status='active'
)

[Back to top]