mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.0 KiB
1.0 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public-identity-attribute-config | PublicIdentityAttributeConfig | PublicIdentityAttributeConfig | PublicIdentityAttributeConfig | pythonsdk |
|
/tools/sdk/python/v3/models/public-identity-attribute-config |
|
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.v3.models.public_identity_attribute_config import PublicIdentityAttributeConfig
public_identity_attribute_config = PublicIdentityAttributeConfig(
key='country',
name='Country'
)