Skip to content

ImportCellsRequest

Properties

Name Type Description Notes
data_link str

Example

from odm_api.models.import_cells_request import ImportCellsRequest

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

# convert the object into a dict
import_cells_request_dict = import_cells_request_instance.to_dict()
# create an instance of ImportCellsRequest from a dict
import_cells_request_from_dict = ImportCellsRequest.from_dict(import_cells_request_dict)
[Back to Model list] [Back to API list] [Back to README]