Skip to content

DatasetPullRequestUpdate

Properties

Name Type Description Notes
title str [optional]
description str [optional]
definition DatasetDefinition [optional]

Example

from lakefs_enterprise_sdk.models.dataset_pull_request_update import DatasetPullRequestUpdate

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

# convert the object into a dict
dataset_pull_request_update_dict = dataset_pull_request_update_instance.to_dict()
# create an instance of DatasetPullRequestUpdate from a dict
dataset_pull_request_update_form_dict = dataset_pull_request_update.from_dict(dataset_pull_request_update_dict)