Skip to main content

CancelledRequestDetails

Provides additional details for a request that has been cancelled.

Properties

NameTypeDescriptionNotes
commentstrComment made by the owner when cancelling the associated request.[optional]
ownerOwnerDto[optional]
modifieddatetimeDate comment was added by the owner when cancelling the associated request.[optional]
}

Example

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]