Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/RoleDocumentAllOfDimensionSchemaAttributes.md
2025-03-10 11:34:32 -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
role-document-all-of-dimension-schema-attributes RoleDocumentAllOfDimensionSchemaAttributes RoleDocumentAllOfDimensionSchemaAttributes RoleDocumentAllOfDimensionSchemaAttributes pythonsdk
python
Python
sdk
RoleDocumentAllOfDimensionSchemaAttributes
RoleDocumentAllOfDimensionSchemaAttributes
/tools/sdk/python/v3/models/role-document-all-of-dimension-schema-attributes
SDK
Software Development Kit
RoleDocumentAllOfDimensionSchemaAttributes
RoleDocumentAllOfDimensionSchemaAttributes

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.v3.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]