Skip to content

FlowCytometryItem

Properties

Name Type Description Notes
item_id str [optional]
item_origin GetExpressionAsCurator200ResponseItemOrigin [optional]
metadata object [optional]
feature GetFlowCytometryAsCurator200ResponseFeature [optional]
value GetFlowCytometryAsCurator200ResponseValue [optional]

Example

from odm_api.models.flow_cytometry_item import FlowCytometryItem

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

# convert the object into a dict
flow_cytometry_item_dict = flow_cytometry_item_instance.to_dict()
# create an instance of FlowCytometryItem from a dict
flow_cytometry_item_from_dict = FlowCytometryItem.from_dict(flow_cytometry_item_dict)
[Back to Model list] [Back to API list] [Back to README]