Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

V1CreateDatasetRequest

Properties

Name Type Description Notes
display_name str [optional]
description str [optional]
log_ids List[str] [optional]
mode V1Mode [optional]

Example

from fixpoint_openapi.models.v1_create_dataset_request import V1CreateDatasetRequest

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

# convert the object into a dict
v1_create_dataset_request_dict = v1_create_dataset_request_instance.to_dict()
# create an instance of V1CreateDatasetRequest from a dict
v1_create_dataset_request_form_dict = v1_create_dataset_request.from_dict(v1_create_dataset_request_dict)

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