Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 975 Bytes

MultipleSpacesWarningDto.md

File metadata and controls

26 lines (19 loc) · 975 Bytes

MultipleSpacesWarningDto

Properties

Name Type Description Notes

Example

from phrasetms_client.models.multiple_spaces_warning_dto import MultipleSpacesWarningDto

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

# convert the object into a dict
multiple_spaces_warning_dto_dict = multiple_spaces_warning_dto_instance.to_dict()
# create an instance of MultipleSpacesWarningDto from a dict
multiple_spaces_warning_dto_from_dict = MultipleSpacesWarningDto.from_dict(multiple_spaces_warning_dto_dict)

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