Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

CreateDatasetsRequest

Properties

Name Type Description Notes
team_id int [optional]
user_id int [optional]
create_origin str [optional]
datasetid str [optional]
metadata object [optional]

Example

from gateway_api_sdk.models.create_datasets_request import CreateDatasetsRequest

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

# convert the object into a dict
create_datasets_request_dict = create_datasets_request_instance.to_dict()
# create an instance of CreateDatasetsRequest from a dict
create_datasets_request_from_dict = CreateDatasetsRequest.from_dict(create_datasets_request_dict)

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