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

980 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
base-reference-dto BaseReferenceDto BaseReferenceDto BaseReferenceDto pythonsdk
python
Python
sdk
BaseReferenceDto
BaseReferenceDto
/tools/sdk/python/v3/models/base-reference-dto
SDK
Software Development Kit
BaseReferenceDto
BaseReferenceDto

BaseReferenceDto

Properties

Name Type Description Notes
type DtoType [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.v3.models.base_reference_dto import BaseReferenceDto

base_reference_dto = BaseReferenceDto(
type='IDENTITY',
id='2c91808568c529c60168cca6f90c1313',
name='William Wilson'
)

[Back to top]