Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 2.38 KB

GUESTRESPONSE.md

File metadata and controls

40 lines (33 loc) · 2.38 KB

GUESTRESPONSE

Properties

Name Type Description Notes
client ClientReference
enable_mt bool [optional]
project_view_other bool [optional]
project_view_other_linguist bool [optional]
project_view_other_editor bool [optional]
trans_memory_view_other bool [optional]
trans_memory_edit_other bool [optional]
trans_memory_export_other bool [optional]
trans_memory_import_other bool [optional]
term_base_view_other bool [optional]
term_base_edit_other bool [optional]
term_base_export_other bool [optional]
term_base_import_other bool [optional]
term_base_approve_other bool [optional]

Example

from phrasetms_client.models.guestresponse import GUESTRESPONSE

# TODO update the JSON string below
json = "{}"
# create an instance of GUESTRESPONSE from a JSON string
guestresponse_instance = GUESTRESPONSE.from_json(json)
# print the JSON string representation of the object
print GUESTRESPONSE.to_json()

# convert the object into a dict
guestresponse_dict = guestresponse_instance.to_dict()
# create an instance of GUESTRESPONSE from a dict
guestresponse_from_dict = GUESTRESPONSE.from_dict(guestresponse_dict)

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