Hi boulder,
you would look at the meta attribute of Metashape.app.document.chunk.tie_points class as in:
chunk.tie_points.meta
Out[5]: 2023-06-28 03:37:22 {'Info/LastSavedDateTime': '2023:06:12 13:51:36', 'Info/LastSavedSoftwareVersion': '1.8.5.15520', 'Info/OriginalDateTime': '2023:06:10 19:06:37', 'Info/OriginalSoftwareVersion': '2.0.2.16334', 'MatchPhotos/descriptor_type': 'binary', 'MatchPhotos/descriptor_version': '1.1.0', 'MatchPhotos/downscale': '1', 'MatchPhotos/duration': '2143.105', 'MatchPhotos/filter_stationary_points': 'false', 'MatchPhotos/generic_preselection': 'true', 'MatchPhotos/guided_matching': 'false', 'MatchPhotos/keep_keypoints': 'false', 'MatchPhotos/keypoint_limit': '50000', 'MatchPhotos/keypoint_limit_per_mpx': '1000', 'MatchPhotos/max_workgroup_size': '100', 'MatchPhotos/ram_used': '1681215488', 'MatchPhotos/reference_preselection': 'true', 'MatchPhotos/reference_preselection_mode': '0', 'MatchPhotos/reset_matches': 'false', 'MatchPhotos/subdivide_task': 'true', 'MatchPhotos/tiepoint_limit': '10000', 'MatchPhotos/workitem_size_cameras': '20', 'MatchPhotos/workitem_size_pairs': '80'}
all keys() that begin with 'MatchPhotos/' will give you what you are looking for:
chunk.tie_points.meta.keys()
Out[6]: 2023-06-28 03:44:15
2023-06-28 03:44:15 ['Info/LastSavedDateTime',
2023-06-28 03:44:15 'Info/LastSavedSoftwareVersion',
2023-06-28 03:44:15 'Info/OriginalDateTime',
2023-06-28 03:44:15 'Info/OriginalSoftwareVersion',
2023-06-28 03:44:15 'MatchPhotos/descriptor_type',
2023-06-28 03:44:15 'MatchPhotos/descriptor_version',
2023-06-28 03:44:15 'MatchPhotos/downscale',
2023-06-28 03:44:15 'MatchPhotos/duration',
2023-06-28 03:44:15 'MatchPhotos/filter_stationary_points',
2023-06-28 03:44:15 'MatchPhotos/generic_preselection',
2023-06-28 03:44:15 'MatchPhotos/guided_matching',
2023-06-28 03:44:15 'MatchPhotos/keep_keypoints',
2023-06-28 03:44:15 'MatchPhotos/keypoint_limit',
2023-06-28 03:44:15 'MatchPhotos/keypoint_limit_per_mpx',
2023-06-28 03:44:15 'MatchPhotos/max_workgroup_size',
2023-06-28 03:44:15 'MatchPhotos/ram_used',
2023-06-28 03:44:15 'MatchPhotos/reference_preselection',
2023-06-28 03:44:15 'MatchPhotos/reference_preselection_mode',
2023-06-28 03:44:15 'MatchPhotos/reset_matches',
2023-06-28 03:44:15 'MatchPhotos/subdivide_task',
2023-06-28 03:44:15 'MatchPhotos/tiepoint_limit',
2023-06-28 03:44:15 'MatchPhotos/workitem_size_cameras',
2023-06-28 03:44:15 'MatchPhotos/workitem_size_pairs']