mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: v2024-cancelled-request-details
|
||||
title: CancelledRequestDetails
|
||||
pagination_label: CancelledRequestDetails
|
||||
sidebar_label: CancelledRequestDetails
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'CancelledRequestDetails', 'V2024CancelledRequestDetails']
|
||||
slug: /tools/sdk/python/v2024/models/cancelled-request-details
|
||||
tags: ['SDK', 'Software Development Kit', 'CancelledRequestDetails', 'V2024CancelledRequestDetails']
|
||||
---
|
||||
|
||||
# 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.v2024.models.cancelled_request_details import CancelledRequestDetails
|
||||
|
||||
cancelled_request_details = CancelledRequestDetails(
|
||||
comment='This request must be cancelled.',
|
||||
owner=sailpoint.v2024.models.owner_dto.OwnerDto(
|
||||
type = 'IDENTITY',
|
||||
id = '2c9180a46faadee4016fb4e018c20639',
|
||||
name = 'Support', ),
|
||||
modified='2019-12-20T09:17:12.192Z'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user