mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.0 KiB
1.0 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-mail-from-attributes-dto | MailFromAttributesDto | MailFromAttributesDto | MailFromAttributesDto | pythonsdk |
|
/tools/sdk/python/beta/models/mail-from-attributes-dto |
|
MailFromAttributesDto
MAIL FROM attributes for a domain / identity
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| identity | str | The identity or domain address | [optional] |
| mail_from_domain | str | The new MAIL FROM domain of the identity. Must be a subdomain of the identity. | [optional] |
| } |
Example
from sailpoint.beta.models.mail_from_attributes_dto import MailFromAttributesDto
mail_from_attributes_dto = MailFromAttributesDto(
identity='BobSmith@sailpoint.com',
mail_from_domain='example.sailpoint.com'
)