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

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
cancelled-request-details CancelledRequestDetails CancelledRequestDetails CancelledRequestDetails pythonsdk
python
Python
sdk
CancelledRequestDetails
CancelledRequestDetails
/tools/sdk/python/v3/models/cancelled-request-details
SDK
Software Development Kit
CancelledRequestDetails
CancelledRequestDetails

CancelledRequestDetails

Provides additional details for a request that has been cancelled.

Properties

Name Type Description Notes
comment str Comment made by the owner when cancelling the associated request. [optional]
owner OwnerDto [optional]
modified datetime Date comment was added by the owner when cancelling the associated request. [optional]
}

Example

from sailpoint.v3.models.cancelled_request_details import CancelledRequestDetails

cancelled_request_details = CancelledRequestDetails(
comment='This request must be cancelled.',
owner=sailpoint.v3.models.owner_dto.OwnerDto(
                    type = 'IDENTITY', 
                    id = '2c9180a46faadee4016fb4e018c20639', 
                    name = 'Support', ),
modified='2019-12-20T09:17:12.192Z'
)

[Back to top]