Skip to content

FlowCytometryResponse

Properties

Name Type Description Notes
data List[GetFlowCytometryAsCurator200Response] [optional]
cursor str [optional]

Example

from odm_api.models.flow_cytometry_response import FlowCytometryResponse

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

# convert the object into a dict
flow_cytometry_response_dict = flow_cytometry_response_instance.to_dict()
# create an instance of FlowCytometryResponse from a dict
flow_cytometry_response_from_dict = FlowCytometryResponse.from_dict(flow_cytometry_response_dict)
[Back to Model list] [Back to API list] [Back to README]