Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 814 Bytes

ADMINRESPONSE.md

File metadata and controls

26 lines (19 loc) · 814 Bytes

ADMINRESPONSE

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]