Skip to main content

BaseCommonDto

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the Object[optional] [readonly]
namestrName of the Object[required]
createddatetimeCreation date of the Object[optional] [readonly]
modifieddatetimeLast modification date of the Object[optional] [readonly]
}

Example

from sailpoint.beta.models.base_common_dto import BaseCommonDto

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

[Back to top]