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

875 B

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-forward-approval-dto ForwardApprovalDto ForwardApprovalDto ForwardApprovalDto pythonsdk
python
Python
sdk
ForwardApprovalDto
BetaForwardApprovalDto
/tools/sdk/python/beta/models/forward-approval-dto
SDK
Software Development Kit
ForwardApprovalDto
BetaForwardApprovalDto

ForwardApprovalDto

Properties

Name Type Description Notes
new_owner_id str The Id of the new owner [required]
comment str The comment provided by the forwarder [required]
}

Example

from sailpoint.beta.models.forward_approval_dto import ForwardApprovalDto

forward_approval_dto = ForwardApprovalDto(
new_owner_id='0',
comment='0'
)

[Back to top]