--- id: cancelled-request-details title: CancelledRequestDetails pagination_label: CancelledRequestDetails sidebar_label: CancelledRequestDetails sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'CancelledRequestDetails', 'CancelledRequestDetails'] slug: /tools/sdk/python/v3/models/cancelled-request-details tags: ['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**](owner-dto) | | [optional] **modified** | **datetime** | Date comment was added by the owner when cancelling the associated request. | [optional] } ## Example ```python 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]](#)