removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,37 +0,0 @@
---
id: mail-from-attributes-dto
title: MailFromAttributesDto
pagination_label: MailFromAttributesDto
sidebar_label: MailFromAttributesDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MailFromAttributesDto']
slug: /tools/sdk/powershell/beta/models/mail-from-attributes-dto
tags: ['SDK', 'Software Development Kit', 'MailFromAttributesDto']
---
# MailFromAttributesDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Identity** | Pointer to **String** | The identity or domain address | [optional]
**MailFromDomain** | Pointer to **String** | The new MAIL FROM domain of the identity. Must be a subdomain of the identity. | [optional]
## Examples
- Prepare the resource
```powershell
$MailFromAttributesDto = Initialize-PSSailpoint.BetaMailFromAttributesDto -Identity BobSmith@sailpoint.com `
-MailFromDomain example.sailpoint.com
```
- Convert the resource to JSON
```powershell
$MailFromAttributesDto | ConvertTo-JSON
```
[[Back to top]](#)