Skip to main content

ManuallyUpdatedFieldsDTO

Properties

NameTypeDescriptionNotes
display_nameboolTrue if the entitlements name was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation. Field refers to Entitlement response schema > name property.[optional] [default to False]
descriptionboolTrue if the entitlement description was updated manually via entitlement import csv or patch endpoint. False means that property value has not been change after first entitlement aggregation. Field refers to Entitlement response schema > description property.[optional] [default to False]
}

Example

from sailpoint.beta.models.manually_updated_fields_dto import ManuallyUpdatedFieldsDTO

manually_updated_fields_dto = ManuallyUpdatedFieldsDTO(
display_name=True,
description=True
)

[Back to top]