Name | Type | Description | Notes |
---|---|---|---|
type | str | ||
transform | str | ||
term | str |
from polaris.catalog.models.term import Term
# TODO update the JSON string below
json = "{}"
# create an instance of Term from a JSON string
term_instance = Term.from_json(json)
# print the JSON string representation of the object
print(Term.to_json())
# convert the object into a dict
term_dict = term_instance.to_dict()
# create an instance of Term from a dict
term_from_dict = Term.from_dict(term_dict)