MergeResult
Properties
Name |
Type |
Description |
Notes |
reference |
str |
|
|
Example
from lakefs_sdk.models.merge_result import MergeResult
# TODO update the JSON string below
json = "{}"
# create an instance of MergeResult from a JSON string
merge_result_instance = MergeResult.from_json(json)
# print the JSON string representation of the object
print MergeResult.to_json()
# convert the object into a dict
merge_result_dict = merge_result_instance.to_dict()
# create an instance of MergeResult from a dict
merge_result_form_dict = merge_result.from_dict(merge_result_dict)
[Back to Model list] [Back to API list] [Back to README]