Skip to main content

Delete202Response

Properties

NameTypeDescriptionNotes
typeEnum [ 'TASK_RESULT' ]Type of object being referenced.[optional]
idstrTask result ID.[optional]
namestrTask result's human-readable display name (this should be null/empty).[optional]
}

Example

from sailpoint.beta.models.delete202_response import Delete202Response

delete202_response = Delete202Response(
type='TASK_RESULT',
id='2c91808779ecf55b0179f720942f181a',
name=''
)

[Back to top]