Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.09 KB

PostAnalyse.md

File metadata and controls

29 lines (22 loc) · 1.09 KB

PostAnalyse

Properties

Name Type Description Notes
trans_memory_post_editing bool Default: false [optional]
non_translatable_post_editing bool Default: false [optional]
machine_translate_post_editing bool Default: false [optional]

Example

from phrasetms_client.models.post_analyse import PostAnalyse

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

# convert the object into a dict
post_analyse_dict = post_analyse_instance.to_dict()
# create an instance of PostAnalyse from a dict
post_analyse_from_dict = PostAnalyse.from_dict(post_analyse_dict)

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