Skip to content

ExpressionResponse

Properties

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

Example

from odm_api.models.expression_response import ExpressionResponse

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

# convert the object into a dict
expression_response_dict = expression_response_instance.to_dict()
# create an instance of ExpressionResponse from a dict
expression_response_from_dict = ExpressionResponse.from_dict(expression_response_dict)
[Back to Model list] [Back to API list] [Back to README]