--- id: v2024-non-employee-approval-item-detail title: NonEmployeeApprovalItemDetail pagination_label: NonEmployeeApprovalItemDetail sidebar_label: NonEmployeeApprovalItemDetail sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'NonEmployeeApprovalItemDetail', 'V2024NonEmployeeApprovalItemDetail'] slug: /tools/sdk/powershell/v2024/models/non-employee-approval-item-detail tags: ['SDK', 'Software Development Kit', 'NonEmployeeApprovalItemDetail', 'V2024NonEmployeeApprovalItemDetail'] --- # NonEmployeeApprovalItemDetail ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **String** | Non-Employee approval item id | [optional] **Approver** | [**NonEmployeeIdentityReferenceWithId**](non-employee-identity-reference-with-id) | | [optional] **AccountName** | **String** | Requested identity account name | [optional] **ApprovalStatus** | [**ApprovalStatus**](approval-status) | | [optional] **ApprovalOrder** | **Double** | Approval order | [optional] **Comment** | **String** | comment of approver | [optional] **Modified** | **System.DateTime** | When the request was last modified. | [optional] **Created** | **System.DateTime** | When the request was created. | [optional] **NonEmployeeRequest** | [**NonEmployeeRequestWithoutApprovalItem**](non-employee-request-without-approval-item) | | [optional] ## Examples - Prepare the resource ```powershell $NonEmployeeApprovalItemDetail = Initialize-V2024NonEmployeeApprovalItemDetail -Id 2c1e388b-1e55-4b0a-ab5c-897f1204159c ` -Approver null ` -AccountName test.account ` -ApprovalStatus null ` -ApprovalOrder 1 ` -Comment I approve ` -Modified 2019-08-23T18:52:59.162Z ` -Created 2019-08-23T18:40:35.772Z ` -NonEmployeeRequest null ``` - Convert the resource to JSON ```powershell $NonEmployeeApprovalItemDetail | ConvertTo-JSON ``` [[Back to top]](#)