Skip to content

SampleCreationBatchSampleItem

Properties

Name Type Description Notes
id str
request SampleCreationBatchItemRequest
processing SampleCreationBatchItemProcessing
created_sample Sample [optional]

Example

from libica.openapi.v3.models.sample_creation_batch_sample_item import SampleCreationBatchSampleItem

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

# convert the object into a dict
sample_creation_batch_sample_item_dict = sample_creation_batch_sample_item_instance.to_dict()
# create an instance of SampleCreationBatchSampleItem from a dict
sample_creation_batch_sample_item_from_dict = SampleCreationBatchSampleItem.from_dict(sample_creation_batch_sample_item_dict)

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