--- id: v2024-task-result-response title: TaskResultResponse pagination_label: TaskResultResponse sidebar_label: TaskResultResponse sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'TaskResultResponse', 'V2024TaskResultResponse'] slug: /tools/sdk/python/v2024/models/task-result-response tags: ['SDK', 'Software Development Kit', 'TaskResultResponse', 'V2024TaskResultResponse'] --- # TaskResultResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **type** | **str** | the type of response reference | [optional] **id** | **str** | the task ID | [optional] **name** | **str** | the task name (not used in this endpoint, always null) | [optional] } ## Example ```python from sailpoint.v2024.models.task_result_response import TaskResultResponse task_result_response = TaskResultResponse( type='TASK_RESULT', id='78733556-9ea3-4f59-bf69-e5cd92b011b4', name='null' ) ``` [[Back to top]](#)