Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.51 KB

TrailingPunctuationWarningDtoAllOf.md

File metadata and controls

30 lines (23 loc) · 1.51 KB

TrailingPunctuationWarningDtoAllOf

Properties

Name Type Description Notes
src_position Position [optional]
src_end_punctuation str [optional]
tgt_position Position [optional]
tgt_end_punctuation str [optional]

Example

from phrasetms_client.models.trailing_punctuation_warning_dto_all_of import TrailingPunctuationWarningDtoAllOf

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

# convert the object into a dict
trailing_punctuation_warning_dto_all_of_dict = trailing_punctuation_warning_dto_all_of_instance.to_dict()
# create an instance of TrailingPunctuationWarningDtoAllOf from a dict
trailing_punctuation_warning_dto_all_of_from_dict = TrailingPunctuationWarningDtoAllOf.from_dict(trailing_punctuation_warning_dto_all_of_dict)

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