Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 928 Bytes

File metadata and controls

29 lines (20 loc) · 928 Bytes

DatasetResponse

Properties

Name Type Description Notes
datasets List[Dataset] [optional]

Example

from bamboohr_sdk.models.dataset_response import DatasetResponse

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

# convert the object into a dict
dataset_response_dict = dataset_response_instance.to_dict()
# create an instance of DatasetResponse from a dict
dataset_response_from_dict = DatasetResponse.from_dict(dataset_response_dict)

[Back to Model list] [Back to API list] [Back to README]