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