ExpressionItem
Properties
Example
from odm_api.models.expression_item import ExpressionItem
# TODO update the JSON string below
json = "{}"
# create an instance of ExpressionItem from a JSON string
expression_item_instance = ExpressionItem.from_json(json)
# print the JSON string representation of the object
print(ExpressionItem.to_json())
# convert the object into a dict
expression_item_dict = expression_item_instance.to_dict()
# create an instance of ExpressionItem from a dict
expression_item_from_dict = ExpressionItem.from_dict(expression_item_dict)
[Back to Model list] [Back to API list] [Back to README]