Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ManualWorkItemDetailsCurrentOwner.md
2025-05-07 14:37:48 +00:00

1.3 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
v2024-manual-work-item-details-current-owner ManualWorkItemDetailsCurrentOwner ManualWorkItemDetailsCurrentOwner ManualWorkItemDetailsCurrentOwner powershellsdk
powershell
PowerShell
sdk
ManualWorkItemDetailsCurrentOwner
V2024ManualWorkItemDetailsCurrentOwner
/tools/sdk/powershell/v2024/models/manual-work-item-details-current-owner
SDK
Software Development Kit
ManualWorkItemDetailsCurrentOwner
V2024ManualWorkItemDetailsCurrentOwner

ManualWorkItemDetailsCurrentOwner

Properties

Name Type Description Notes
Type Enum [ "GOVERNANCE_GROUP", "IDENTITY" ] DTO type of current work item owner's identity. [optional]
Id String ID of current work item owner's identity. [optional]
Name String Display name of current work item owner. [optional]

Examples

  • Prepare the resource
$ManualWorkItemDetailsCurrentOwner = Initialize-V2024ManualWorkItemDetailsCurrentOwner  -Type IDENTITY `
 -Id 2c3780a46faadee4016fb4e018c20652 `
 -Name Allen Albertson
  • Convert the resource to JSON
$ManualWorkItemDetailsCurrentOwner | ConvertTo-JSON

[Back to top]