| Name |
Type |
Description |
Notes |
| ids |
List[UUID] |
The IDs of the records to merge |
|
| conflict_priority_index |
float |
The index of the record to use when conflicts occur |
|
| dry_run |
bool |
If true, the merge will not be performed and a preview of the merge will be returned. |
[optional] [default to False] |
from twentycrm_client.models.merge_many_people_request import MergeManyPeopleRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MergeManyPeopleRequest from a JSON string
merge_many_people_request_instance = MergeManyPeopleRequest.from_json(json)
# print the JSON string representation of the object
print(MergeManyPeopleRequest.to_json())
# convert the object into a dict
merge_many_people_request_dict = merge_many_people_request_instance.to_dict()
# create an instance of MergeManyPeopleRequest from a dict
merge_many_people_request_from_dict = MergeManyPeopleRequest.from_dict(merge_many_people_request_dict)
[Back to Model list] [Back to API list] [Back to README]