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.v2024.models.public_identity_attributes_inner import PublicIdentityAttributesInner

public_identity_attributes_inner = PublicIdentityAttributesInner(
key='country',
name='Country',
value='US'
)

[Back to top]