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.v2024.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'
)