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

987 B

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-dimension-ref DimensionRef DimensionRef DimensionRef pythonsdk
python
Python
sdk
DimensionRef
BetaDimensionRef
/tools/sdk/python/beta/models/dimension-ref
SDK
Software Development Kit
DimensionRef
BetaDimensionRef

DimensionRef

Properties

Name Type Description Notes
type Enum [ 'DIMENSION' ] The type of the object to which this reference applies [optional]
id str ID of the object to which this reference applies [optional]
name str Human-readable display name of the object to which this reference applies [optional]
}

Example

from sailpoint.beta.models.dimension_ref import DimensionRef

dimension_ref = DimensionRef(
type='DIMENSION',
id='2c91808568c529c60168cca6f90c1313',
name='Role 2'
)

[Back to top]