Skip to content

StartImportVariantRequest

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.start_import_variant_request import StartImportVariantRequest

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

# convert the object into a dict
start_import_variant_request_dict = start_import_variant_request_instance.to_dict()
# create an instance of StartImportVariantRequest from a dict
start_import_variant_request_from_dict = StartImportVariantRequest.from_dict(start_import_variant_request_dict)
[Back to Model list] [Back to API list] [Back to README]