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

1.2 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-current-owner ApprovalStatusDtoCurrentOwner ApprovalStatusDtoCurrentOwner ApprovalStatusDtoCurrentOwner pythonsdk
python
Python
sdk
ApprovalStatusDtoCurrentOwner
BetaApprovalStatusDtoCurrentOwner
/tools/sdk/python/beta/models/approval-status-dto-current-owner
SDK
Software Development Kit
ApprovalStatusDtoCurrentOwner
BetaApprovalStatusDtoCurrentOwner

ApprovalStatusDtoCurrentOwner

Properties

Name Type Description Notes
type Enum [ 'IDENTITY' ] DTO type of identity who reviewed the access item request. [optional]
id str ID of identity who reviewed the access item request. [optional]
name str Human-readable display name of identity who reviewed the access item request. [optional]
}

Example

from sailpoint.beta.models.approval_status_dto_current_owner import ApprovalStatusDtoCurrentOwner

approval_status_dto_current_owner = ApprovalStatusDtoCurrentOwner(
type='IDENTITY',
id='2c3780a46faadee4016fb4e018c20652',
name='Allen Albertson'
)

[Back to top]