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

997 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-delete202-response Delete202Response Delete202Response Delete202Response pythonsdk
python
Python
sdk
Delete202Response
BetaDelete202Response
/tools/sdk/python/beta/models/delete202-response
SDK
Software Development Kit
Delete202Response
BetaDelete202Response

Delete202Response

Properties

Name Type Description Notes
type Enum [ 'TASK_RESULT' ] Type of object being referenced. [optional]
id str Task result ID. [optional]
name str Task 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]