Skip to main content

VendorConnectorMappingDeletedAt

An object representing the nullable timestamp of when the mapping was deleted.

Properties

NameTypeDescriptionNotes
timedatetimeThe timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.[optional]
validboolA flag indicating if the 'Time' field is set and valid, i.e., if the mapping has been deleted.[optional] [default to False]
}

Example

from sailpoint.beta.models.vendor_connector_mapping_deleted_at import VendorConnectorMappingDeletedAt

vendor_connector_mapping_deleted_at = VendorConnectorMappingDeletedAt(
time='0001-01-01T00:00Z',
valid=False
)

[Back to top]