ImportSignalRunRequest¶
import signal data request
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| source | str | The source parameter is ignored and will be removed in version 1.61. The source is automatically extracted from the link | [optional] |
| metadata_link | str | [optional] | |
| data_link | str | ||
| template_id | str | [optional] | |
| previous_version | str | [optional] |
Example¶
from odm_api.models.import_signal_run_request import ImportSignalRunRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ImportSignalRunRequest from a JSON string
import_signal_run_request_instance = ImportSignalRunRequest.from_json(json)
# print the JSON string representation of the object
print(ImportSignalRunRequest.to_json())
# convert the object into a dict
import_signal_run_request_dict = import_signal_run_request_instance.to_dict()
# create an instance of ImportSignalRunRequest from a dict
import_signal_run_request_from_dict = ImportSignalRunRequest.from_dict(import_signal_run_request_dict)