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

1021 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-common-dto BaseCommonDto BaseCommonDto BaseCommonDto pythonsdk
python
Python
sdk
BaseCommonDto
BaseCommonDto
/tools/sdk/python/v3/models/base-common-dto
SDK
Software Development Kit
BaseCommonDto
BaseCommonDto

BaseCommonDto

Properties

Name Type Description Notes
id str System-generated unique ID of the Object [optional] [readonly]
name str Name of the Object [required]
created datetime Creation date of the Object [optional] [readonly]
modified datetime Last modification date of the Object [optional] [readonly]
}

Example

from sailpoint.v3.models.base_common_dto import BaseCommonDto

base_common_dto = BaseCommonDto(
id='id12345',
name='aName',
created='2015-05-28T14:07:17Z',
modified='2015-05-28T14:07:17Z'
)

[Back to top]