Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1006 Bytes

SendRunDataRequest.md

File metadata and controls

30 lines (21 loc) · 1006 Bytes

SendRunDataRequest

Properties

Name Type Description Notes
id str [optional]
data List[Dict[str, object]] [optional]

Example

from cosmotech_api.models.send_run_data_request import SendRunDataRequest

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

# convert the object into a dict
send_run_data_request_dict = send_run_data_request_instance.to_dict()
# create an instance of SendRunDataRequest from a dict
send_run_data_request_from_dict = SendRunDataRequest.from_dict(send_run_data_request_dict)

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