github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/docs/FindMergeBaseResult.md (about)

     1  # FindMergeBaseResult
     2  
     3  
     4  ## Properties
     5  
     6  Name | Type | Description | Notes
     7  ------------ | ------------- | ------------- | -------------
     8  **source_commit_id** | **str** | The commit ID of the merge source | 
     9  **destination_commit_id** | **str** | The commit ID of the merge destination | 
    10  **base_commit_id** | **str** | The commit ID of the merge base | 
    11  
    12  ## Example
    13  
    14  ```python
    15  from lakefs_sdk.models.find_merge_base_result import FindMergeBaseResult
    16  
    17  # TODO update the JSON string below
    18  json = "{}"
    19  # create an instance of FindMergeBaseResult from a JSON string
    20  find_merge_base_result_instance = FindMergeBaseResult.from_json(json)
    21  # print the JSON string representation of the object
    22  print FindMergeBaseResult.to_json()
    23  
    24  # convert the object into a dict
    25  find_merge_base_result_dict = find_merge_base_result_instance.to_dict()
    26  # create an instance of FindMergeBaseResult from a dict
    27  find_merge_base_result_form_dict = find_merge_base_result.from_dict(find_merge_base_result_dict)
    28  ```
    29  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    30  
    31