Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.1 KB

File metadata and controls

27 lines (20 loc) · 1.1 KB

SourceTargetRegexpWarningDto

Properties

Name Type Description Notes
description str [optional]

Example

from phrasetms_client.models.source_target_regexp_warning_dto import SourceTargetRegexpWarningDto

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

# convert the object into a dict
source_target_regexp_warning_dto_dict = source_target_regexp_warning_dto_instance.to_dict()
# create an instance of SourceTargetRegexpWarningDto from a dict
source_target_regexp_warning_dto_from_dict = SourceTargetRegexpWarningDto.from_dict(source_target_regexp_warning_dto_dict)

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