Publicidentityconfig
Details of up to 5 Identity attributes that will be publicly accessible for all Identities to anyone in the org.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| attributes | []Publicidentityattributeconfig | Up to 5 identity attributes that will be available to everyone in the org for all users in the org. | [optional] |
| modified | datetime | When this configuration was last modified. | [optional] |
| modified_by | Identityreference | [optional] | |
| } |
Example
from sailpoint.public_identities_config.models.publicidentityconfig import Publicidentityconfig
publicidentityconfig = Publicidentityconfig(
attributes=[
sailpoint.public_identities_config.models.public_identity_attribute_config.Public Identity Attribute Config(
key = 'country',
name = 'Country', )
],
modified='2018-06-25T20:22:28.104Z',
modified_by=sailpoint.public_identities_config.models.identity_reference.Identity Reference(
type = 'IDENTITY',
id = '2c9180a46faadee4016fb4e018c20639',
name = 'Thomas Edison', )
)