Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.13 KB

RepeatedWordsWarningDtoAllOf.md

File metadata and controls

27 lines (20 loc) · 1.13 KB

RepeatedWordsWarningDtoAllOf

Properties

Name Type Description Notes
repeated_words List[str] [optional]

Example

from phrasetms_client.models.repeated_words_warning_dto_all_of import RepeatedWordsWarningDtoAllOf

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

# convert the object into a dict
repeated_words_warning_dto_all_of_dict = repeated_words_warning_dto_all_of_instance.to_dict()
# create an instance of RepeatedWordsWarningDtoAllOf from a dict
repeated_words_warning_dto_all_of_from_dict = RepeatedWordsWarningDtoAllOf.from_dict(repeated_words_warning_dto_all_of_dict)

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