Skip to main content

VendorConnectorMappingUpdatedBy

An object representing the nullable identifier of the user who last updated the mapping.

Properties

NameTypeDescriptionNotes
stringstrThe identifier of the user who last updated the mapping, if available.[optional]
validboolA flag indicating if the 'String' field is set and valid.[optional] [default to False]
}

Example

from sailpoint.v2024.models.vendor_connector_mapping_updated_by import VendorConnectorMappingUpdatedBy

vendor_connector_mapping_updated_by = VendorConnectorMappingUpdatedBy(
string='user-67891',
valid=True
)

[Back to top]