Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.5 KB

File metadata and controls

31 lines (22 loc) · 1.5 KB

MergeManyWorkflowAutomatedTriggersRequest

Properties

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]

Example

from twentycrm_client.models.merge_many_workflow_automated_triggers_request import MergeManyWorkflowAutomatedTriggersRequest

# TODO update the JSON string below
json = "{}"
# create an instance of MergeManyWorkflowAutomatedTriggersRequest from a JSON string
merge_many_workflow_automated_triggers_request_instance = MergeManyWorkflowAutomatedTriggersRequest.from_json(json)
# print the JSON string representation of the object
print(MergeManyWorkflowAutomatedTriggersRequest.to_json())

# convert the object into a dict
merge_many_workflow_automated_triggers_request_dict = merge_many_workflow_automated_triggers_request_instance.to_dict()
# create an instance of MergeManyWorkflowAutomatedTriggersRequest from a dict
merge_many_workflow_automated_triggers_request_from_dict = MergeManyWorkflowAutomatedTriggersRequest.from_dict(merge_many_workflow_automated_triggers_request_dict)

[Back to Model list] [Back to API list] [Back to README]