DatasetPullRequestList
Properties
| Name |
Type |
Description |
Notes |
| pagination |
Pagination |
|
|
| results |
List[DatasetPullRequest] |
|
|
Example
from lakefs_enterprise_sdk.models.dataset_pull_request_list import DatasetPullRequestList
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetPullRequestList from a JSON string
dataset_pull_request_list_instance = DatasetPullRequestList.from_json(json)
# print the JSON string representation of the object
print DatasetPullRequestList.to_json()
# convert the object into a dict
dataset_pull_request_list_dict = dataset_pull_request_list_instance.to_dict()
# create an instance of DatasetPullRequestList from a dict
dataset_pull_request_list_form_dict = dataset_pull_request_list.from_dict(dataset_pull_request_list_dict)