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

1.1 KiB

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-public-identity-attribute-config PublicIdentityAttributeConfig PublicIdentityAttributeConfig PublicIdentityAttributeConfig pythonsdk
python
Python
sdk
PublicIdentityAttributeConfig
V2025PublicIdentityAttributeConfig
/tools/sdk/python/v2025/models/public-identity-attribute-config
SDK
Software Development Kit
PublicIdentityAttributeConfig
V2025PublicIdentityAttributeConfig

PublicIdentityAttributeConfig

Used to map an attribute key for an Identity to its display name.

Properties

Name Type Description Notes
key str The attribute key [optional]
name str The attribute display name [optional]
}

Example

from sailpoint.v2025.models.public_identity_attribute_config import PublicIdentityAttributeConfig

public_identity_attribute_config = PublicIdentityAttributeConfig(
key='country',
name='Country'
)

[Back to top]