Skip to main content

PutIdentityCollectorV1409ResponseMessagesInner

Properties

NameTypeDescriptionNotes
localestrThe locale for the message text, a BCP 47 language tag.[optional]
locale_originstrAn indicator of how the locale was selected.[optional]
textstrActual text of the error message in the indicated locale.[optional]
}

Example

from sailpoint.data_access_security.models.put_identity_collector_v1409_response_messages_inner import PutIdentityCollectorV1409ResponseMessagesInner

put_identity_collector_v1409_response_messages_inner = PutIdentityCollectorV1409ResponseMessagesInner(
locale='en-US',
locale_origin='DEFAULT',
text='An identity collector with the same name already exists.'
)

[Back to top]