adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-form-instance-recipient
title: FormInstanceRecipient
pagination_label: FormInstanceRecipient
sidebar_label: FormInstanceRecipient
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormInstanceRecipient', 'BetaFormInstanceRecipient']
slug: /tools/sdk/powershell/beta/models/form-instance-recipient
tags: ['SDK', 'Software Development Kit', 'FormInstanceRecipient', 'BetaFormInstanceRecipient']
---
# FormInstanceRecipient
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | ID is a unique identifier | [optional]
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Type is a FormInstanceRecipientType value IDENTITY FormInstanceRecipientIdentity | [optional]
## Examples
- Prepare the resource
```powershell
$FormInstanceRecipient = Initialize-PSSailpoint.BetaFormInstanceRecipient -Id 00000000-0000-0000-0000-000000000000 `
-Type IDENTITY
```
- Convert the resource to JSON
```powershell
$FormInstanceRecipient | ConvertTo-JSON
```
[[Back to top]](#)