Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/RoleDocumentAllOfDimensionSchemaAttributes.md
2025-04-01 09:23:12 -04:00

1.3 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
v2025-role-document-all-of-dimension-schema-attributes RoleDocumentAllOfDimensionSchemaAttributes RoleDocumentAllOfDimensionSchemaAttributes RoleDocumentAllOfDimensionSchemaAttributes pythonsdk
python
Python
sdk
RoleDocumentAllOfDimensionSchemaAttributes
V2025RoleDocumentAllOfDimensionSchemaAttributes
/tools/sdk/python/v2025/models/role-document-all-of-dimension-schema-attributes
SDK
Software Development Kit
RoleDocumentAllOfDimensionSchemaAttributes
V2025RoleDocumentAllOfDimensionSchemaAttributes

RoleDocumentAllOfDimensionSchemaAttributes

Properties

Name Type Description Notes
derived bool [optional] [default to True]
display_name str Displayname of the dimension attribute. [optional]
name str Name of the dimension attribute. [optional]
}

Example

from sailpoint.v2025.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]