Skip to main content

CreateIdentityCollectorV1200Response

Properties

NameTypeDescriptionNotes
idintThe unique identifier of the created identity collector.[optional]
namestrThe display name of the created identity collector.[optional]
}

Example

from sailpoint.data_access_security.models.create_identity_collector_v1200_response import CreateIdentityCollectorV1200Response

create_identity_collector_v1200_response = CreateIdentityCollectorV1200Response(
id=12345,
name='Active Directory Identity Collector'
)

[Back to top]