Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.17 KB

TerminologyWarningDtoAllOf.md

File metadata and controls

28 lines (21 loc) · 1.17 KB

TerminologyWarningDtoAllOf

Properties

Name Type Description Notes
missing_terms List[str] [optional]
forbidden_terms List[str] [optional]

Example

from phrasetms_client.models.terminology_warning_dto_all_of import TerminologyWarningDtoAllOf

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

# convert the object into a dict
terminology_warning_dto_all_of_dict = terminology_warning_dto_all_of_instance.to_dict()
# create an instance of TerminologyWarningDtoAllOf from a dict
terminology_warning_dto_all_of_from_dict = TerminologyWarningDtoAllOf.from_dict(terminology_warning_dto_all_of_dict)

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