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