Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/TaskResultResponse.md
2025-02-20 12:59:19 -05:00

980 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-task-result-response TaskResultResponse TaskResultResponse TaskResultResponse pythonsdk
python
Python
sdk
TaskResultResponse
BetaTaskResultResponse
/tools/sdk/python/beta/models/task-result-response
SDK
Software Development Kit
TaskResultResponse
BetaTaskResultResponse

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

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]