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

1.0 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
v2024-base-common-dto1 BaseCommonDto1 BaseCommonDto1 BaseCommonDto1 pythonsdk
python
Python
sdk
BaseCommonDto1
V2024BaseCommonDto1
/tools/sdk/python/v2024/models/base-common-dto1
SDK
Software Development Kit
BaseCommonDto1
V2024BaseCommonDto1

BaseCommonDto1

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.v2024.models.base_common_dto1 import BaseCommonDto1

base_common_dto1 = BaseCommonDto1(
id='id12345',
name='aName',
created='2023-01-03T21:16:22.432Z',
modified='2023-01-03T21:16:22.432Z'
)

[Back to top]