Skip to main content

RoleDocumentAllOfDimensionSchemaAttributes

Properties

NameTypeDescriptionNotes
derivedbool[optional] [default to True]
display_namestrDisplayname of the dimension attribute.[optional]
namestrName of the dimension attribute.[optional]
}

Example

from sailpoint.v2024.models.role_document_all_of_dimension_schema_attributes import RoleDocumentAllOfDimensionSchemaAttributes

role_document_all_of_dimension_schema_attributes = RoleDocumentAllOfDimensionSchemaAttributes(
derived=True,
display_name='Department',
name='department'
)

[Back to top]