A dataset record managed by the Gateway
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| user_id | int | [optional] | |
| team_id | int | [optional] | |
| pid | str | [optional] | |
| datasetid | str | [optional] | |
| version | int | [optional] | |
| status | str | [optional] | |
| create_origin | str | [optional] | |
| is_cohort_discovery | bool | [optional] | |
| created_at | datetime | [optional] | |
| updated_at | datetime | [optional] |
from gateway_api_sdk.models.dataset import Dataset
# TODO update the JSON string below
json = "{}"
# create an instance of Dataset from a JSON string
dataset_instance = Dataset.from_json(json)
# print the JSON string representation of the object
print(Dataset.to_json())
# convert the object into a dict
dataset_dict = dataset_instance.to_dict()
# create an instance of Dataset from a dict
dataset_from_dict = Dataset.from_dict(dataset_dict)