DatasetRef
Properties
| Name |
Type |
Description |
Notes |
| type |
str |
ref type; currently only \"commit\" is accepted |
|
| id |
str |
|
|
Example
from lakefs_enterprise_sdk.models.dataset_ref import DatasetRef
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetRef from a JSON string
dataset_ref_instance = DatasetRef.from_json(json)
# print the JSON string representation of the object
print DatasetRef.to_json()
# convert the object into a dict
dataset_ref_dict = dataset_ref_instance.to_dict()
# create an instance of DatasetRef from a dict
dataset_ref_form_dict = dataset_ref.from_dict(dataset_ref_dict)