Skip to main content

TaskResultResponse

Properties

NameTypeDescriptionNotes
typestrthe type of response reference[optional]
idstrthe task ID[optional]
namestrthe task name (not used in this endpoint, always null)[optional]
}

Example

from sailpoint.beta.models.task_result_response import TaskResultResponse

task_result_response = TaskResultResponse(
type='TASK_RESULT',
id='78733556-9ea3-4f59-bf69-e5cd92b011b4',
name='null'
)

[Back to top]