Skip to main content

PublicidentityAttributesInner

Properties

NameTypeDescriptionNotes
keystrThe attribute key[optional]
namestrHuman-readable display name of the attribute[optional]
valuestrThe attribute value[optional]
}

Example

from sailpoint.custom_user_levels.models.publicidentity_attributes_inner import PublicidentityAttributesInner

publicidentity_attributes_inner = PublicidentityAttributesInner(
key='country',
name='Country',
value='US'
)

[Back to top]