DatasetPullRequestCreation
Properties
| Name |
Type |
Description |
Notes |
| title |
str |
|
|
| description |
str |
|
[optional] |
| definition |
DatasetDefinition |
|
|
Example
from lakefs_enterprise_sdk.models.dataset_pull_request_creation import DatasetPullRequestCreation
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetPullRequestCreation from a JSON string
dataset_pull_request_creation_instance = DatasetPullRequestCreation.from_json(json)
# print the JSON string representation of the object
print DatasetPullRequestCreation.to_json()
# convert the object into a dict
dataset_pull_request_creation_dict = dataset_pull_request_creation_instance.to_dict()
# create an instance of DatasetPullRequestCreation from a dict
dataset_pull_request_creation_form_dict = dataset_pull_request_creation.from_dict(dataset_pull_request_creation_dict)