--- id: v2024-processing-details title: ProcessingDetails pagination_label: ProcessingDetails sidebar_label: ProcessingDetails sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'ProcessingDetails', 'V2024ProcessingDetails'] slug: /tools/sdk/powershell/v2024/models/processing-details tags: ['SDK', 'Software Development Kit', 'ProcessingDetails', 'V2024ProcessingDetails'] --- # ProcessingDetails ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Date** | **System.DateTime** | A date-time in ISO-8601 format | [optional] **Stage** | **String** | | [optional] **RetryCount** | **Int32** | | [optional] **VarStackTrace** | **String** | | [optional] **Message** | **String** | | [optional] ## Examples - Prepare the resource ```powershell $ProcessingDetails = Initialize-V2024ProcessingDetails -Date 2018-06-25T20:22:28.104Z ` -Stage In Process ` -RetryCount 0 ` -VarStackTrace ` -Message ``` - Convert the resource to JSON ```powershell $ProcessingDetails | ConvertTo-JSON ``` [[Back to top]](#)