Name | Type | Description | Notes |
---|
from phrasetms_client.models.adminedit import ADMINEDIT
# TODO update the JSON string below
json = "{}"
# create an instance of ADMINEDIT from a JSON string
adminedit_instance = ADMINEDIT.from_json(json)
# print the JSON string representation of the object
print ADMINEDIT.to_json()
# convert the object into a dict
adminedit_dict = adminedit_instance.to_dict()
# create an instance of ADMINEDIT from a dict
adminedit_from_dict = ADMINEDIT.from_dict(adminedit_dict)