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

2.5 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
beta-approval-status-dto ApprovalStatusDto ApprovalStatusDto ApprovalStatusDto pythonsdk
python
Python
sdk
ApprovalStatusDto
BetaApprovalStatusDto
/tools/sdk/python/beta/models/approval-status-dto
SDK
Software Development Kit
ApprovalStatusDto
BetaApprovalStatusDto

ApprovalStatusDto

Properties

Name Type Description Notes
approval_id str Unique identifier for the approval. [optional]
forwarded bool True if the request for this item was forwarded from one owner to another. [optional] [default to False]
original_owner ApprovalStatusDtoOriginalOwner [optional]
current_owner ApprovalStatusDtoCurrentOwner [optional]
modified datetime Time at which item was modified. [optional]
status ManualWorkItemState [optional]
scheme ApprovalScheme [optional]
error_messages []ErrorMessageDto If the request failed, includes any error messages that were generated. [optional]
comment str Comment, if any, provided by the approver. [optional]
remove_date datetime The date the role or access profile or entitlement is no longer assigned to the specified identity. [optional]
}

Example

from sailpoint.beta.models.approval_status_dto import ApprovalStatusDto

approval_status_dto = ApprovalStatusDto(
approval_id='2c9180877b2b6ea4017b2c545f971429',
forwarded=False,
original_owner=sailpoint.beta.models.approval_status_dto_original_owner.ApprovalStatusDto_originalOwner(
                    type = 'IDENTITY', 
                    id = '2c7180a46faadee4016fb4e018c20642', 
                    name = 'Michael Michaels', ),
current_owner=,
modified='2019-08-23T18:52:57.398Z',
status='PENDING',
scheme='MANAGER',
error_messages=[
                    sailpoint.beta.models.error_message_dto.ErrorMessageDto(
                        locale = 'en-US', 
                        locale_origin = 'DEFAULT', 
                        text = 'The request was syntactically correct but its content is semantically invalid.', )
                    ],
comment='I approve this request',
remove_date='2020-07-11T00:00Z'
)

[Back to top]