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.access_profiles.models.attributevaluedto import Attributevaluedto

attributevaluedto = Attributevaluedto(
value='public',
name='Public',
status='active'
)

[Back to top]