Ref
Properties
Name |
Type |
Description |
Notes |
id |
str |
|
|
commit_id |
str |
|
|
Example
from lakefs_sdk.models.ref import Ref
# TODO update the JSON string below
json = "{}"
# create an instance of Ref from a JSON string
ref_instance = Ref.from_json(json)
# print the JSON string representation of the object
print Ref.to_json()
# convert the object into a dict
ref_dict = ref_instance.to_dict()
# create an instance of Ref from a dict
ref_form_dict = ref.from_dict(ref_dict)
[Back to Model list] [Back to API list] [Back to README]