Skip to main content

VendorConnectorMappingDeletedBy

An object representing the nullable identifier of the user who deleted the mapping.

Properties

NameTypeDescriptionNotes
stringstrThe identifier of the user who deleted the mapping, if applicable.[optional]
validboolA flag indicating if the 'String' 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_by import VendorConnectorMappingDeletedBy

vendor_connector_mapping_deleted_by = VendorConnectorMappingDeletedBy(
string='',
valid=False
)

[Back to top]