DatasetPullRequestDiff
Properties
| Name |
Type |
Description |
Notes |
| base_version |
int |
|
|
| latest_version |
int |
|
|
| stale |
bool |
|
|
| base_definition |
str |
compiled dataset.json at the base version |
|
| proposed_definition |
str |
compiled dataset.json proposed by the PR |
|
Example
from lakefs_enterprise_sdk.models.dataset_pull_request_diff import DatasetPullRequestDiff
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetPullRequestDiff from a JSON string
dataset_pull_request_diff_instance = DatasetPullRequestDiff.from_json(json)
# print the JSON string representation of the object
print DatasetPullRequestDiff.to_json()
# convert the object into a dict
dataset_pull_request_diff_dict = dataset_pull_request_diff_instance.to_dict()
# create an instance of DatasetPullRequestDiff from a dict
dataset_pull_request_diff_form_dict = dataset_pull_request_diff.from_dict(dataset_pull_request_diff_dict)