Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/MailFromAttributesDto.md
2025-02-20 12:59:19 -05:00

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
python
Python
sdk
MailFromAttributesDto
BetaMailFromAttributesDto
/tools/sdk/python/beta/models/mail-from-attributes-dto
SDK
Software Development Kit
MailFromAttributesDto
BetaMailFromAttributesDto

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'
)

[Back to top]